aboutsummaryrefslogtreecommitdiff
path: root/inc/gui.h
diff options
context:
space:
mode:
authorMarvin Borner2023-01-30 17:07:20 +0100
committerMarvin Borner2023-01-30 17:07:20 +0100
commit9f770358c43ccf3730e85c3a6bbb00d0b492ecbb (patch)
treecb7b8aba63c25441891324b0abb2e4e9c0363a41 /inc/gui.h
parentde450bfb4354f716fb43fae69d90ed513068d10b (diff)
Basic GUI
Diffstat (limited to 'inc/gui.h')
-rw-r--r--inc/gui.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/inc/gui.h b/inc/gui.h
new file mode 100644
index 0000000..e8a583d
--- /dev/null
+++ b/inc/gui.h
@@ -0,0 +1,19 @@
+#ifndef GUI_H
+#define GUI_H
+
+#include <err.h>
+#include <stdint.h>
+
+struct gui_interface {
+ err (*step_next)(void);
+ err (*step_prev)(void);
+};
+
+void gui_reg_names(const char *names, int n);
+void gui_reg_update(int reg, uint64_t value);
+void gui_instr_done(char *instr);
+
+void gui_register_interface(struct gui_interface *gui);
+void gui_init(void);
+
+#endif