summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl/debug-cb.h
blob: 84ef8f33db7c200e1cbe524836b56c185c372c1c (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include <gtk/gtk.h>

void
on_new_mem_activate                    (GtkWidget *win);

void
on_new_disasm_activate                (GtkWidget *win);

void
on_run_activate                       (GtkWidget *win);

void
on_run_h_activate                     (GtkWidget *win);

void
on_run_cpu_activate                   (GtkWidget *win);

void
on_run_irq_activate                   (GtkWidget *win);

void
on_run_vbl_activate                   (GtkWidget *win);

void
on_step_into_activate                 (GtkWidget *win);

void
on_step_over_activate                 (GtkWidget *win);

void
on_step_out_activate                  (GtkWidget *win);

GtkWidget*
debug_view_new (gchar *widget_name, gchar *string1, gchar *string2,
				gint int1, gint int2);

GtkWidget*
dview_new (const gchar *widget_name, const gchar *string1, const gchar *string2,
				gint int1, gint int2);

void
on_raw_opcodes_activate               (GtkWidget *win);

void
on_enc_opcodes_activate               (GtkWidget *win);

void
on_comments_activate                  (GtkWidget *win);

void
on_new_errorlog_activate              (GtkWidget *win);

void
on_soft_reset_activate                (GtkWidget *win);

void
on_hard_reset_activate                (GtkWidget *win);

void
on_exit_activate                      (GtkWidget *win);

void
on_chunks_1_activate                  (GtkWidget *win);

void
on_chunks_2_activate                  (GtkWidget *win);

void
on_chunks_4_activate                  (GtkWidget *win);

void
on_reverse_activate                   (GtkWidget *win);

void
on_ibpl_activate                      (GtkWidget *win);

void
on_dbpl_activate                      (GtkWidget *win);

GtkWidget*
dview_new (const gchar *widget_name, const gchar *string1, const gchar *string2,
				gint int1, gint int2);

void
on_run_to_cursor_activate             (GtkWidget *win);

void
on_set_breakpoint_at_cursor_activate             (GtkWidget *win);

gboolean
on_disasm_button_press_event           (GtkWidget       *widget,
										GdkEventButton  *event,
										gpointer         user_data);

gboolean
on_memoryview_button_press_event           (GtkWidget       *widget,
										GdkEventButton  *event,
										gpointer         user_data);

gboolean
on_memoryview_key_press_event             (GtkWidget   *widget,
														GdkEventKey *event,
														gpointer     user_data);

void
on_logical_addresses_group_changed     (GtkWidget *win);

void
on_physical_addresses_group_changed    (GtkWidget *win);