From 297daafc892dd3f6c18a3df4bd15d3140d0fc0a4 Mon Sep 17 00:00:00 2001 From: n loewen Date: Thu, 3 Aug 2023 15:08:32 +0100 Subject: [PATCH] Remove debugging print --- display.js | 1 - 1 file changed, 1 deletion(-) diff --git a/display.js b/display.js index 5ac78f0..94eb55b 100644 --- a/display.js +++ b/display.js @@ -3,7 +3,6 @@ const { num2hex } = require('./logging.js'); const printDisplay = (mem) => { const disp = mem[POINTER_TO_START_OF_DISPLAY_MEM]; - console.log("DISP", disp); for (let i = disp; i < disp + 16; i += 4) { console.log(`${num2hex(mem[i])} ${num2hex(mem[i+1])} ${num2hex(mem[i+2])} ${num2hex(mem[i+3])}`); }