spartserv

Simple client and server for the spartan protocol
git clone https://noulin.net/git/spartserv.git
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