From 7b4d6f2ec06c16fdfad929b51445a692e33369c7 Mon Sep 17 00:00:00 2001 From: n loewen Date: Wed, 2 Aug 2023 11:22:57 +0100 Subject: [PATCH] Update + comment CYCLE_LIMIT --- machine.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/machine.config.js b/machine.config.js index 3d8938a..c95aba7 100644 --- a/machine.config.js +++ b/machine.config.js @@ -1,5 +1,9 @@ module.exports = { "INITIAL_IP_ADDRESS": 48, "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, } \ No newline at end of file