blob: e8a583d23157a3a79b82d2a27575cf626a53902f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|