dasm-assembler / dasm

Macro assembler with support for several 8-bit microprocessors

Home Page:https://dasm-assembler.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for #elif directive

dionoid opened this issue · comments

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