mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
19 lines
217 B
ArmAsm
19 lines
217 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 31.12.99
|
||
|
|
||
|
.import popax
|
||
|
.export DoublePop
|
||
|
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
DoublePop:
|
||
|
sta r0L
|
||
|
stx r0H
|
||
|
jsr popax
|
||
|
sta r1L
|
||
|
stx r1H
|
||
|
rts
|