mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
23 lines
266 B
ArmAsm
23 lines
266 B
ArmAsm
|
|
; #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
|
|
|