nesasm
nesasm copied to clipboard
NESasm -- NES 6502 assembler, version 3.1 :video_game:
NESASM does not support BRK with signature byte.
Why is there a +1 is the add without carry macro? ``` add .macro ; add a value to register A clc ; (handle carry flag) adc \1+1 .endm ```
If the size of a symbol exceeds the `SBOLSZ - 1` limit (https://github.com/camsaul/nesasm/blob/master/source/symbol.c#L57), reading more characters for the symbol silently bails. This can cause aliasing of symbols if `really_very_surprisingly_long_name` and...