예제 #1
0
debug_view_expression::debug_view_expression(running_machine &machine)
	: m_machine(machine),
		m_dirty(true),
		m_result(0),
		m_parsed(debug_cpu_get_global_symtable(machine)),
		m_string("0")
{
}
예제 #2
0
void debug_view_expression::set_context(symbol_table *context)
{
	m_parsed.set_symbols((context != NULL) ? context : debug_cpu_get_global_symtable(machine()));
	m_dirty = true;
}
예제 #3
0
void debug_view_expression::set_context(symbol_table *context)
{
	m_context = (context != NULL) ? context : debug_cpu_get_global_symtable(&m_machine);
	m_dirty = true;
}