1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 22:29:31 +00:00
cc65/libsrc/runtime/subeqsp.s

27 lines
345 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 08.10.1998
;
; CC65 runtime: -= operator for ints on the stack
;
.export subeq0sp, subeqysp
.importzp sp
subeq0sp:
ldy #0
subeqysp:
sec
eor #$FF
adc (sp),y
sta (sp),y
pha ; Save low byte
iny
txa
eor #$FF
adc (sp),y
sta (sp),y
tax
pla ; Restore low byte
rts