Example #1
0
void on_soft_reset_activate(GtkMenuItem *item, gpointer user_data)
{
	mame_schedule_soft_reset((running_machine *)user_data);
	debug_cpu_go((running_machine *)user_data, ~0);
}
Example #2
0
void osd_wait_for_debugger(void)
{
    debug_cpu_go(~0);
}
Example #3
0
void on_run_h_activate(GtkMenuItem *item, gpointer user_data)
{
	debugwin_show(0);
	debug_cpu_go((running_machine *)user_data, ~0);
}