11 lines
93 B
NASM
11 lines
93 B
NASM
AREA |.text|, CODE
|
|
|
|
EXPORT foo
|
|
|
|
foo PROC
|
|
mov w0, #zero
|
|
ret
|
|
ENDP
|
|
|
|
END
|