adds readme
This commit is contained in:
parent
2c7be9b288
commit
f777789fc5
|
@ -0,0 +1,13 @@
|
||||||
|
; a user defined proc
|
||||||
|
|
||||||
|
.code
|
||||||
|
|
||||||
|
asm_proc proc
|
||||||
|
ret ; return from the procedure
|
||||||
|
asm_proc endp
|
||||||
|
|
||||||
|
main proc ; the main procedure
|
||||||
|
call asm_proc ; call our proc
|
||||||
|
ret
|
||||||
|
main endp
|
||||||
|
end
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue