1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +00:00
cc65/libsrc/runtime/pushaff.s
2022-04-17 16:06:22 +02:00

21 lines
288 B
ArmAsm

;
; Ullrich von Bassewitz, 26.10.2000
;
; CC65 runtime: Push a extended with FF onto the stack
;
.export pushaFF
.import pushax
; Beware: The optimizer knows about this function!
.proc pushaFF
ldx #$FF
jmp pushax
.endproc