1
0
mirror of https://github.com/cc65/cc65.git synced 2025-03-05 07:30:13 +00:00

19 lines
231 B
ArmAsm

;
; Ullrich von Bassewitz, 26.03.2001
;
; CC65 runtime: Decrement ax by 5
;
.export decax5
.macpack generic
.proc decax5
sub #5
bcs @L9
dex
@L9: rts
.endproc