diff options
author | Marvin Borner | 2023-01-30 23:16:44 +0100 |
---|---|---|
committer | Marvin Borner | 2023-01-30 23:16:44 +0100 |
commit | 82f6a5ef2b2ca2ec31afabdca9d0141bc732c6e7 (patch) | |
tree | 09d564355a649d7238ea5a5a49c94efb168a532c /inc/gui.h | |
parent | 9f770358c43ccf3730e85c3a6bbb00d0b492ecbb (diff) |
Diffstat (limited to 'inc/gui.h')
-rw-r--r-- | inc/gui.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,9 +9,10 @@ struct gui_interface { err (*step_prev)(void); }; -void gui_reg_names(const char *names, int n); +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_instr_push(char *instr); +void gui_instr_pop(void); void gui_register_interface(struct gui_interface *gui); void gui_init(void); |