dasm-assembler / dasm

Macro assembler with support for several 8-bit microprocessors
https://dasm-assembler.github.io/
GNU General Public License v2.0
215 stars 40 forks source link

Support for #elif directive #132

Open dionoid opened 2 years ago

dionoid commented 2 years ago

The code below doesn't show an error, but the #elif directive just seem to be ignored.

if MODE == 1

include "file1.asm"

elif MODE == 2

include "file2.asm"

else

include "file3.asm"

endif