mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
14 lines
222 B
ArmAsm
14 lines
222 B
ArmAsm
.macro IncludeFile FilePath
|
|
.proc bar
|
|
.include FilePath
|
|
.endproc
|
|
.endmacro
|
|
|
|
IncludeFile "070-include-macro.inc"
|
|
|
|
.ifdef bar::foo
|
|
.out "bar::foo is defined"
|
|
.else
|
|
.out "bar::foo is undefined"
|
|
.endif
|