I have a piece of nasm assembly code which I want to be yasm compatible, but running the assembler on it gives errors on a couple of nasm-specific macros and includes, mostly related to the conditional
%if __BITS__ == 32
Where __BITS__
is the current bit mode.
Does YASM have equivalent functionality, or any other way to follow a code path depending on the bit mode?