Increase cycle limit

This commit is contained in:
n loewen 2023-08-01 15:31:52 +01:00
parent 5f79c981b2
commit 24767d1899
1 changed files with 1 additions and 1 deletions

View File

@ -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');