mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
22 lines
293 B
ArmAsm
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
|
|
|