mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
18 lines
248 B
ArmAsm
18 lines
248 B
ArmAsm
;
|
|
; Maciej 'YTM/Alliance' Witkowiak
|
|
;
|
|
; 31.12.99
|
|
|
|
.import popax
|
|
.export DoublePop
|
|
|
|
.include "geossym.inc"
|
|
|
|
DoublePop:
|
|
sta r0L
|
|
stx r0H
|
|
jsr popax
|
|
sta r1L
|
|
stx r1H
|
|
rts
|