Multithread debugger and emulator with message queues
diff --git a/dbg.h b/dbg.h
index c31c1c3..67f082d 100644
--- a/dbg.h
+++ b/dbg.h
@@ -2,4 +2,9 @@
 
 #include "cpu.h"
 
-void debug(cpu_t *cpu);
+#include <stdbool.h>
+#include <mqueue.h>
+
+bool debug_stmt(cpu_t *cpu, char *input, bool *running);
+// void debug_prompt(mqd_t mq, cpu_t *cpu);
+pthread_t start_debug_prompt(mqd_t mq, cpu_t *cpu);
\ No newline at end of file