💾 Archived View for gmi.noulin.net › gitRepositories › spartserv › file › spartasm › macros.asm.gmi captured on 2023-07-10 at 15:38:54. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
macros.asm (254B)
1 %macro stackpush 0 2 push rdi 3 push rsi 4 push rdx 5 push r10 6 push r8 7 push r9 8 push rbx 9 push rcx 10 %endmacro 11 12 %macro stackpop 0 13 pop rcx 14 pop rbx 15 pop r9 16 pop r8 17 pop r10 18 pop rdx 19 pop rsi 20 pop rdi 21 %endmacro