Files
cc65/test/asm/listing/sp-compat.s
Kugel Fuhr 5db2aed129 Allow "sp" as an alias for "c_sp" for backwards compatibility. Using it will
work but generates a linker warning. Added a test to check for this warning.
2025-06-26 07:40:04 +02:00

8 lines
102 B
ArmAsm

.include "zeropage.inc"
.proc _func
ldy #0
lda (sp),y
rts
.endproc