You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
250 B
ArmAsm
25 lines
250 B
ArmAsm
12 years ago
|
;
|
||
|
; Piotr Fusik, 24.10.2003
|
||
|
; originally by Ullrich von Bassewitz
|
||
|
;
|
||
|
; CC65 runtime: Decrement the stackpointer by value in y
|
||
|
;
|
||
|
|
||
|
.export subysp
|
||
|
.importzp sp
|
||
|
|
||
|
.proc subysp
|
||
|
|
||
|
tya
|
||
|
eor #$ff
|
||
|
sec
|
||
|
adc sp
|
||
|
sta sp
|
||
|
bcs @L1
|
||
|
dec sp+1
|
||
|
@L1: rts
|
||
|
|
||
|
.endproc
|
||
|
|
||
|
|