(MESS) vtech1: fixed cassette recording (thanks to ubee for reporting the problem)

This commit is contained in:
Robert 2014-11-12 21:48:15 +11:00
parent d027ef60b5
commit 82590b42f1

View File

@ -223,8 +223,8 @@ WRITE8_MEMBER( vtech1_state::vtech1_latch_w )
m_mc6847->gm2_w(BIT(data, 1));
}
// bit 2, cassette out
m_cassette->output( BIT(data, 2) ? +1.0 : -1.0);
// bit 2, cassette out (actually bits 1 and 2 perform this function, so either can be used)
m_cassette->output( BIT(data, 2) ? -1.0 : +1.0);
// bit 3 and 4, vdc mode control lines
m_mc6847->ag_w(BIT(data, 3));