f036d503d844932b47d007bb53e2749f57d65c37
[lunaix-os.git] / lunaix-os / includes / sdbg / gdbstub.h
1 #ifndef __LUNAIX_GDBSTUB_H
2 #define __LUNAIX_GDBSTUB_H
3
4 #include <lunaix/hart_state.h>
5 #include <hal/serial.h>
6
7 struct gdb_state
8 {
9     int signum;
10     struct serial_dev* sdev;
11     reg_t registers[GDB_CPU_NUM_REGISTERS];
12 };
13
14 void
15 gdbstub_loop(struct hart_state* hstate);
16
17 #endif /* __LUNAIX_GDBSTUB_H */