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 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'inc/cpu.h') 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 { -- cgit v1.2.3