1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-07 09:54:35 +00:00
cc65/test/asm/err/bug1678.s

23 lines
266 B
ArmAsm
Raw Normal View History

2022-05-09 19:27:21 +00:00
; #1678 Endless loop printing error messages
.macpack longbranch
.import _exit
.export _main
.macro foo
foo
.endmacro
.struct bar
foo
.endstruct
_main:
; exit OK
lda #0
ldx #0
jmp _exit