; ; Ullrich von Bassewitz, 25.10.2000 ; ; CC65 runtime: Decrement the stackpointer by 2 ; .export decsp2 .importzp c_sp .proc decsp2 lda c_sp sec sbc #2 sta c_sp bcc @L1 rts @L1: dec c_sp+1 rts .endproc