Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %macro ARG_i 1
- %define ARG1 .%1
- %define ARG2 .%2
- pop rax
- mov rcx, qword [ARG1 + rbx]
- push rcx
- push rax
- %endmacro
- %macro ARG_o 1
- %define ARG1 .%1
- %define ARG2 .%2
- pop rax
- pop qword rcx
- mov [ARG1 + rbx], rcx
- push rax
- %endmacro
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement