xEroS
xEroS copied to clipboard
Add JMP/JME/etc to scripting
Thinking to make it so you can't loop, it should only accept JMP'ing to labels that are greater than the current program location
test: mov ax,bx ... JMP test -- WILL NOT WORK (can only move down) JMP test2 -- will work .. test2:
this needs to have limits so that the program won't choke all nodes. The example with the original (only moving down) doesn't make much sense. There should be a maximum amount of loop "credits". Or refactor the entire fee to pay by lines of code executed.