diff options
author | Marvin Borner | 2023-01-30 17:07:20 +0100 |
---|---|---|
committer | Marvin Borner | 2023-01-30 17:07:20 +0100 |
commit | 9f770358c43ccf3730e85c3a6bbb00d0b492ecbb (patch) | |
tree | cb7b8aba63c25441891324b0abb2e4e9c0363a41 /inc/gui.h | |
parent | de450bfb4354f716fb43fae69d90ed513068d10b (diff) |
Basic GUI
Diffstat (limited to 'inc/gui.h')
-rw-r--r-- | inc/gui.h | 19 |
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 |