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

simple test related to #1678

This commit is contained in:
mrdudz 2022-05-09 21:27:21 +02:00
parent 3943dc1216
commit 15047d9754

22
test/asm/err/bug1678.s Normal file
View File

@ -0,0 +1,22 @@
; #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