From 82f6a5ef2b2ca2ec31afabdca9d0141bc732c6e7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 30 Jan 2023 23:16:44 +0100 Subject: More gui => more bugs --- inc/cpu.h | 5 +++-- inc/gui.h | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'inc') diff --git a/inc/cpu.h b/inc/cpu.h index ca85a2f..e0caf50 100644 --- a/inc/cpu.h +++ b/inc/cpu.h @@ -6,9 +6,10 @@ #include struct cpu_interface { - void (*reg_names)(const char *names, int n); + void (*reg_names)(const char *names[], int n); void (*reg_update)(int reg, uint64_t val); - void (*instr_done)(char *instr); + void (*instr_push)(char *instr); + void (*instr_pop)(void); }; enum registers { diff --git a/inc/gui.h b/inc/gui.h index e8a583d..3dfcc1b 100644 --- a/inc/gui.h +++ b/inc/gui.h @@ -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); -- cgit v1.2.3