Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .code
- ix = 0
- rept 2
- ix$ textequ %ix
- % foo_&ix$ proc
- mov rax, ix
- ret
- % foo_&ix$ endp
- ix = ix + 1
- endm
- ; call the generated procs
- call foo_0
- call foo_1
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement