mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 02:05:13 +00:00
21 lines
388 B
ArmAsm
21 lines
388 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 02.10.2002
|
||
|
;
|
||
|
; Helper function for tgi functions. Pops X/Y from stack into ptr1/ptr2
|
||
|
;
|
||
|
|
||
|
.include "tgi-kernel.inc"
|
||
|
|
||
|
.import popax
|
||
|
.importzp ptr1, ptr2
|
||
|
|
||
|
tgi_popxy:
|
||
|
sta ptr2 ; Y
|
||
|
stx ptr2+1
|
||
|
jsr popax
|
||
|
sta ptr1 ; X
|
||
|
stx ptr1+1
|
||
|
rts
|
||
|
|
||
|
|