summaryrefslogtreecommitdiff
path: root/src/core.rs
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2025-10-10 19:01:04 +0200
committertaitep <taitep@taitep.se>2025-10-10 19:01:04 +0200
commit6bd31e73fb910d59066adeb11b9d85411e2c743e (patch)
tree01b5cf8bebff222b3e245473fc3f06f2f5bf590a /src/core.rs
parentbf5562df5467c909d32d78202fd9e62d27e935fd (diff)
some debugging stuff and SECOND OPCODE!
Diffstat (limited to 'src/core.rs')
-rw-r--r--src/core.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.rs b/src/core.rs
index 9e82521..6570e76 100644
--- a/src/core.rs
+++ b/src/core.rs
@@ -68,7 +68,7 @@ impl Core {
}
}
} else {
- eprintln!("Invalid Instruction");
+ eprintln!("Invalid Instruction 0x{:08x} 0b{:032b}", instr.0, instr.0);
break;
}
}