Closed DevsArchive closed 2 years ago
Also, ASM68K does not play nicely with spaces in if statements. Was using this to program some Z80 stuff and I've had
ld de,(284h-508h)*2
assemble asld de,((284h-508h)*2)
because it wasn't even applying the 2nd strcmp. It might be worth looking into a better way to detect parenthesis, because I can see stuff likeld a,(num1)*(num2)
becoming an issue.
Does this include with the WS assembler option on?
...it DOES help to have that on lol.
Also, ASM68K does not play nicely with spaces in if statements. Was using this to program some Z80 stuff and I've had
ld de,(284h-508h)*2
assemble asld de,((284h-508h)*2)
because it wasn't even applying the 2nd strcmp. It might be worth looking into a better way to detect parenthesis, because I can see stuff likeld a,(num1)*(num2)
becoming an issue.