mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 05:39:57 -05:00
3166547cf6
https://learn.microsoft.com/en-us/cpp/assembler/arm/arm-assembler-reference Fixes: #23999
11 lines
90 B
NASM
11 lines
90 B
NASM
AREA |.text|, CODE
|
|
|
|
EXPORT foo
|
|
|
|
foo PROC
|
|
mov w0, #0
|
|
ret
|
|
ENDP
|
|
|
|
END
|