Fred
Fred
I would like to try to implement what I suggested above; could you explain me how the cursor is managed? I'm not sure to clearly understand the purpose of the...
Ok, I understand the purpose of the virtual cursor, thanks. The Spinner is a good idea, it will be easier to start with a blank type, rather than modify an...
Yes, warning + flag is good. As for PASS3 switch for Lua code generating assembly code: I ignore the warning as I know what I'm doing.
I second vmorilla demand. When I have to do string concat., I make a LUA script, which is overkill in most situations. Thanks!
Thanks! It could be useful to organize defines: ``` OBJ .POS ..X EQU 100 ..Y EQU 150 .DIR ..X EQU 1 ..Y EQU 2 .COLOR ..FOR EQU WHITE ..BACK EQU...
I agree that the use case in the sub-routine is not very good¹, but I'm not a big fan to introduce a new paradgim (with 2 more keywords!) to implement...
In fact, I would definitly have great use of nested labels in sub-routines! Even in a reasonnable size one, I often have several sub-sections, with their own loops/relative jumps. Without...
Your above example should definitly not raise 'Unrecognized instruction' error. But if the fix is complicated, I would postpone it to a 2.x branch (if you plan to go so...
I need to take the time to summurize this module vs namespace I have in mind...
Adding (optional?) usage of {} around arguments could solve the problem: ``` MACRO M_TOTO arg LD HL,blah.{arg} ENDM M_TOTO argValue ```