1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/runtime/popa.s

30 lines
496 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 25.10.2000
;
; CC65 runtime: Pop a from stack
;
.export popa
.importzp sp
.macpack cpu
.proc popa
.if (.cpu .bitand ::CPU_ISET_65SC02)
lda (sp)
.else
ldy #0 ; (2)
lda (sp),y ; (7) Read byte
.endif
inc sp ; (12)
beq @L1 ; (14)
rts ; (20)
@L1: inc sp+1
rts
.endproc