Files
cc65/test/asm/listing/080-sp-compat.s
2025-06-27 17:32:20 +02:00

17 lines
200 B
ArmAsm

.include "zeropage.inc"
; FIXME: there must be a less ugly way to do this
.ifp4510
.else
.ifp45GS02
.else
.proc _func
ldy #0
lda (sp),y
rts
.endproc
.endif
.endif