2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 31.08.1998
|
|
|
|
;
|
2002-11-23 16:21:46 +00:00
|
|
|
; CC65 runtime: Fetch word indirect and push
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export pushw, pushwidx, pushptr1idx
|
|
|
|
.import pushax
|
|
|
|
.importzp ptr1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-23 16:21:46 +00:00
|
|
|
|
|
|
|
pushw: ldy #1
|
2000-05-28 13:40:48 +00:00
|
|
|
pushwidx:
|
2013-05-09 11:56:54 +00:00
|
|
|
sta ptr1
|
|
|
|
stx ptr1+1
|
2012-06-01 19:19:45 +00:00
|
|
|
pushptr1idx:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda (ptr1),y
|
|
|
|
tax
|
|
|
|
dey
|
|
|
|
lda (ptr1),y
|
|
|
|
jmp pushax
|
2000-05-28 13:40:48 +00:00
|
|
|
|