Started to fool around with debug on windows 7 32bit, wanted to make simple commands to add a value to a register then subtract the value by half. By using the g command it appears nothing happened?
debug.jpg
Originally Posted by Elyne1331
Started to fool around with debug on windows 7 32bit, wanted to make simple commands to add a value to a register then subtract the value by half. By using the g command it appears nothing happened?
Nothing happened because you have the wrong syntax for g. If you want to start at 100 and execute to 103, its "g=100 103". "g 100 (103)" is just saying execute till 100, so nothing at all gets run.