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.
22 lines
258 B
ArmAsm
22 lines
258 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 31.08.1998
|
||
|
;
|
||
|
; CC65 runtime: Fetch word indirect and push
|
||
|
;
|
||
|
|
||
|
.export pushw, pushwidx
|
||
|
.import pushax
|
||
|
.importzp ptr1
|
||
|
|
||
|
|
||
|
pushw: ldy #1
|
||
|
pushwidx:
|
||
|
sta ptr1
|
||
|
stx ptr1+1
|
||
|
lda (ptr1),y
|
||
|
tax
|
||
|
dey
|
||
|
lda (ptr1),y
|
||
|
jmp pushax
|
||
|
|