blob: 2a05f27edd66421adb563c7a8c15ec5e1d77f7a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef DEBUG_H_
#define DEBUG_H_
#include <stdint.h>
#include "m68k_to_x86.h"
typedef struct disp_def {
struct disp_def * next;
char * param;
uint32_t index;
char format_char;
} disp_def;
typedef struct bp_def {
struct bp_def * next;
uint32_t address;
uint32_t index;
} bp_def;
bp_def ** find_breakpoint(bp_def ** cur, uint32_t address);
bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index);
void add_display(disp_def ** head, uint32_t *index, char format_char, char * param);
void remove_display(disp_def ** head, uint32_t index);
m68k_context * debugger(m68k_context * context, uint32_t address);
#endif //DEBUG_H_
|