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.
|
;
|
|
; Ullrich von Bassewitz, 31.08.1998
|
|
;
|
|
; CC65 runtime: Load a from stack slot and push as byte
|
|
;
|
|
|
|
.export bpushbsp, bpushbysp
|
|
.import pusha
|
|
.importzp sp
|
|
|
|
bpushbsp:
|
|
ldy #0
|
|
bpushbysp:
|
|
lda (sp),y
|
|
jmp pusha
|
|
|
|
|
|
|