Change debug level for memory-before-labelling table
This commit is contained in:
parent
da0ababc59
commit
7813aaf56c
|
|
@ -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)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue