| Previous | 199869 Revisions | Next |
| r33351 Wednesday 12th November, 2014 at 10:48:15 UTC by Robbbert |
|---|
| (MESS) vtech1: fixed cassette recording (thanks to ubee for reporting the problem) |
| [src/mess/drivers] | vtech1.c |
| r241862 | r241863 | |
|---|---|---|
| 223 | 223 | m_mc6847->gm2_w(BIT(data, 1)); |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | // bit 2, cassette out | |
| 227 | m_cassette->output( BIT(data, 2) ? +1.0 : -1.0); | |
| 226 | // bit 2, cassette out (actually bits 1 and 2 perform this function, so either can be used) | |
| 227 | m_cassette->output( BIT(data, 2) ? -1.0 : +1.0); | |
| 228 | 228 | |
| 229 | 229 | // bit 3 and 4, vdc mode control lines |
| 230 | 230 | m_mc6847->ag_w(BIT(data, 3)); |
| https://github.com/mamedev/mame/commit/82590b42f192e0854d49d20b4b90a44f88b812fd |
| Previous | 199869 Revisions | Next |