Hi,
I often have the problem that I have to use cross references between files:
e.g.
A.top
outputmacro: a1()
b1()
outputmacro: a2()
B.top
outputmacro: b1()
a2()
There is no way I know of to compile them without splitting them, because regardless which file is listed first in the files text file, one macro is always not defined.
Is there a chance of either allowing macro declarations (telling the compiler that the macro will be defined later) or making the compiler scanning all macros first and and then compiling everything again?