1
0
mirror of https://github.com/cc65/cc65.git synced 2026-03-10 17:21:49 +00:00
Files
cc65/libsrc/runtime/addeqsp.s
2025-06-23 17:09:06 +02:00

25 lines
390 B
ArmAsm

;
; Ullrich von Bassewitz, 08.10.1998
;
; CC65 runtime: += operator for ints on the stack
;
.export addeq0sp, addeqysp
.importzp c_sp
addeq0sp:
ldy #0
addeqysp:
clc
adc (c_sp),y
sta (c_sp),y
pha
iny
txa
adc (c_sp),y
sta (c_sp),y
tax
pla
rts