Change debug level for memory-before-labelling table

This commit is contained in:
n loewen 2023-08-01 13:31:13 +01:00
parent da0ababc59
commit 7813aaf56c
1 changed files with 4 additions and 4 deletions

View File

@ -125,10 +125,10 @@ function decodeInstructions(str) {
console.groupEnd('Input line'); console.groupEnd('Input line');
}; };
dbg(2, ''); dbg(1, '');
dbgGroup(2, 'Memory before filling in label pointers'); dbgGroup(1, 'Memory before filling in label pointers');
dbgExec(2, () => printMemory.printTable(machineCode)); dbgExec(1, () => printMemory.printTable(machineCode));
dbgGroupEnd(2, 'Memory before filling in label pointers'); dbgGroupEnd(1, 'Memory before filling in label pointers');
// Backfill label pointers // Backfill label pointers
for (let k of Object.keys(labels)) { for (let k of Object.keys(labels)) {