💾 Archived View for gmi.noulin.net › gitRepositories › spartserv › file › spartasm › macros.asm.gmi captured on 2024-08-18 at 18:52:51. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-07-10)

-=-=-=-=-=-=-

spartserv

Log

Files

Refs

README

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