2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 29.12.1999
|
|
|
|
;
|
|
|
|
; CC65 runtime: long pop
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export popeax
|
|
|
|
.import incsp4
|
|
|
|
.importzp sp, sreg
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
popeax: ldy #3
|
|
|
|
lda (sp),y
|
|
|
|
sta sreg+1
|
|
|
|
dey
|
|
|
|
lda (sp),y
|
|
|
|
sta sreg
|
|
|
|
dey
|
|
|
|
lda (sp),y
|
|
|
|
tax
|
|
|
|
dey
|
|
|
|
lda (sp),y
|
|
|
|
jmp incsp4
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|