art_of_x64_assembly/listing1-4.asm

13 lines
87 B
NASM
Raw Permalink Normal View History

2024-07-13 03:32:09 +00:00
.code
myProc proc
ret
myProc endp
main PROC
call myProc
ret
main endp
end