Update + comment CYCLE_LIMIT
This commit is contained in:
parent
77f4c93d1f
commit
7b4d6f2ec0
|
|
@ -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,
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue