mirror of
https://github.com/cc65/cc65.git
synced 2025-08-15 06:27:36 +00:00
simple test related to #1678
This commit is contained in:
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
|
||||||
|
|
Reference in New Issue
Block a user