mirror of
https://github.com/fluencelabs/musl
synced 2025-04-24 23:02:14 +00:00
these files are all accepted as legacy arm syntax when producing arm code, but legacy syntax cannot be used for producing thumb2 with access to the full ISA. even after switching to UAL, some asm source files contain instructions which are not valid in thumb mode, so these will need to be addressed separately.
10 lines
122 B
ArmAsm
10 lines
122 B
ArmAsm
.syntax unified
|
|
.text
|
|
.global __unmapself
|
|
.type __unmapself,%function
|
|
__unmapself:
|
|
mov r7,#91
|
|
svc 0
|
|
mov r7,#1
|
|
svc 0
|