mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
simple test related to #1678
This commit is contained in:
parent
3943dc1216
commit
15047d9754
22
test/asm/err/bug1678.s
Normal file
22
test/asm/err/bug1678.s
Normal 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
|
||||
|
Loading…
Reference in New Issue
Block a user