by Tdarcos » Fri Feb 10, 2012 4:26 am
Tdarcos wrote:Ice Cream Jonsey wrote:That caused the game to crash, as the above forms a loop. An endless loop!
Thanks, Bruce.
Actually, you're lucky it's a subroutine call, this uses memory for the stack frame and makes the game (eventually) use all available memory. If it was a branch it would just hang.
I have a method I use - I'm writing a cross-reference for Pascal Programs, something that has been really weak compared with what was available back on mainframe compilers - is a "trap code". Any place where something is happening, a global variable called TrapCode is set to 0 the first time it is entering an area. Every time it passes through the critical area, TrapCode is incremented. If it's not supposed to get more than, say, 5 or 6 loops I'll set the check on TrapCode so that if it reaches 50, it raises a flag that causes it to print a message and pause until ENTER is pressed, allowing me to see when a runaway program occurs.
[quote="Tdarcos"][quote="Ice Cream Jonsey"]That caused the game to crash, as the above forms a loop. An endless loop!
Thanks, Bruce.[/quote]
Actually, you're lucky it's a subroutine call, this uses memory for the stack frame and makes the game (eventually) use all available memory. If it was a branch it would just hang.[/quote]
I have a method I use - I'm writing a cross-reference for Pascal Programs, something that has been really weak compared with what was available back on mainframe compilers - is a "trap code". Any place where something is happening, a global variable called TrapCode is set to 0 the first time it is entering an area. Every time it passes through the critical area, TrapCode is incremented. If it's not supposed to get more than, say, 5 or 6 loops I'll set the check on TrapCode so that if it reaches 50, it raises a flag that causes it to print a message and pause until ENTER is pressed, allowing me to see when a runaway program occurs.