2011-08-24, 09:23 PM
boriel Wrote:Note: EQU $ is something that I don't think should be supported because It can be written this way:
In fact you can use $ for relative jumps, like JR $-5 and the like.Code:Asm string: defb "(your name) is cool" eostr: ; EQU $ is no needed End Asm
Exactly my solution! Using EQU $ is a bit long winded. It just means "a label which has a value of here" when all labels have that anyway!

