Remove debugging print

This commit is contained in:
n loewen 2023-08-03 15:08:32 +01:00
parent a0892109a6
commit 297daafc89
1 changed files with 0 additions and 1 deletions

View File

@ -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])}`);
}