Increase cycle limit
This commit is contained in:
parent
5f79c981b2
commit
24767d1899
|
|
@ -4,7 +4,7 @@
|
|||
// one byte for the opcode, one for the argument
|
||||
|
||||
const INITIAL_IP_ADDRESS = 32;
|
||||
const CYCLE_LIMIT = 64; // max number of times to step the CPU, to stop endless loops
|
||||
const CYCLE_LIMIT = 128; // max number of times to step the CPU, to stop endless loops
|
||||
|
||||
const display = require('./display.js');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue