From 9f8e9ec380ad679fe714222345a46ebf77d063d6 Mon Sep 17 00:00:00 2001 From: taitep Date: Sat, 27 Dec 2025 11:48:36 +0100 Subject: Implement a GDB stub and fix another huge issue in S-type immediate decoding --- src/core/commands.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/core/commands.rs (limited to 'src/core') diff --git a/src/core/commands.rs b/src/core/commands.rs new file mode 100644 index 0000000..93bdd1e --- /dev/null +++ b/src/core/commands.rs @@ -0,0 +1,7 @@ +use std::sync::mpsc; + +use crate::gdb; + +pub enum CoreCmd { + EnterDbgMode(mpsc::Receiver), +} -- cgit v1.2.3