trunk/src/mess/drivers/altos5.c
| r23519 | r23520 | |
| 9 | 9 | ToDo: |
| 10 | 10 | - DMA has its own memory banking, activated by BUSACK |
| 11 | 11 | - Get floppy to read the disk (only ones found are .TD0 format) |
| 12 | | - Find out how to select double density on the fdc |
| 13 | 12 | - Further work once the floppy is fixed |
| 14 | 13 | |
| 15 | 14 | ****************************************************************************/ |
| r23519 | r23520 | |
| 317 | 316 | { |
| 318 | 317 | floppy->mon_w(0); |
| 319 | 318 | floppy->ss_w(BIT(data, 6)); |
| 320 | | //floppy->dden_w(BIT(data, 4)); // no option to specify disk density |
| 319 | m_fdc->dden_w(!BIT(data, 4)); |
| 321 | 320 | m_port08 |= ((UINT8)floppy->twosid_r() << 3); // get number of sides |
| 322 | 321 | } |
| 323 | 322 | } |