Update + comment CYCLE_LIMIT

This commit is contained in:
n loewen 2023-08-02 11:22:57 +01:00
parent 77f4c93d1f
commit 7b4d6f2ec0
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
module.exports = { module.exports = {
"INITIAL_IP_ADDRESS": 48, "INITIAL_IP_ADDRESS": 48,
"START_OF_DISPLAY_MEM": 0, "START_OF_DISPLAY_MEM": 0,
"CYCLE_LIMIT": 128, // max number of times to step the CPU, to stop endless loops
// max number of times to step the CPU,
// to stop endless loops
// 0 = infinite
"CYCLE_LIMIT": 128,
} }