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 word
|
|
;
|
|
|
|
.export pushbsp, pushbysp
|
|
.import pusha0
|
|
.importzp sp
|
|
|
|
pushbsp:
|
|
ldy #0
|
|
pushbysp:
|
|
lda (sp),y ; get lo byte
|
|
jmp pusha0 ; promote to unsigned and push
|
|
|
|
|