Mattias Gustavsson wrote:For the Sys calls, there's one I forgot to mention
- Code: Select all
move.l mystr,a0 ; Address to a zero terminated sequence of ascii values
move.l 0,d0 ; DebugPrint command
sys 0 ; Debug sys call
Which might be useful to add support for, as it lets you print a custom string.
For the ROR/ROL, best is to just make do without them for now - just reversing the order probably won't work...
Thanks
I can at least use ROL anyway
BTW, the language now does bit-wise And, Or, Xor as well as Mod too...
cheers,
Paul