From ac14aa37c2e501a471424fb2cf0a4556a6f3021a Mon Sep 17 00:00:00 2001 From: n loewen Date: Thu, 3 Aug 2023 08:05:49 +0100 Subject: [PATCH] Remove debugging print --- display.js | 1 - 1 file changed, 1 deletion(-) diff --git a/display.js b/display.js index c5e5a16..a051282 100644 --- a/display.js +++ b/display.js @@ -3,7 +3,6 @@ const { num2hex } = require('./logging.js'); exports.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])}`); }