t11: show flags (nw)

vt240: fix comm init (nw)
This commit is contained in:
cracyc 2016-06-21 21:58:28 -05:00
parent 5b9e7bcccf
commit 1a74f4dbde
2 changed files with 4 additions and 2 deletions

View File

@ -285,7 +285,7 @@ void t11_device::device_start()
state_add( T11_R5, "R5", m_reg[5].w.l).formatstr("%04X");
state_add(STATE_GENPC, "curpc", m_reg[7].w.l).noshow();
state_add(STATE_GENFLAGS, "GENFLAGS", m_psw.b.l).noshow();
state_add(STATE_GENFLAGS, "GENFLAGS", m_psw.b.l).formatstr("%8s").noshow();
state_add(STATE_GENPCBASE, "GENPCBASE", m_ppc.w.l).noshow();
m_icountptr = &m_icount;

View File

@ -179,7 +179,7 @@ WRITE8_MEMBER(vt240_state::i8085_comm_w)
break;
case 2:
m_i8085->set_input_line(INPUT_LINE_RESET, PULSE_LINE);
m_t11 = 0;
m_t11 = 1;
m_i8085->set_input_line(I8085_RST65_LINE, CLEAR_LINE);
break;
}
@ -351,6 +351,8 @@ void vt240_state::machine_reset()
m_nvram->recall(ASSERT_LINE);
m_nvram->recall(CLEAR_LINE);
m_mem_map_sel = 0;
m_t11 = 1;
m_i8085_rdy = 1;
}
static const gfx_layout vt240_chars_8x10 =