1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/runtime/decaxy.s

22 lines
293 B
ArmAsm

;
; Ullrich von Bassewitz, 29.12.1999
;
; CC65 runtime: Decrement ax by value in Y
;
.export decaxy
.importzp tmp1
.macpack generic
.proc decaxy
sty tmp1
sub tmp1
bcs @L9
dex
@L9: rts
.endproc