(MESS) wmbullet: Fixed floppy. [Curt Coder]

This commit is contained in:
Curt Coder 2013-11-20 15:26:19 +00:00
parent 565b8e8ecb
commit dadc47b54a
2 changed files with 7 additions and 6 deletions

View File

@ -178,7 +178,7 @@ int z80pio_device::z80daisy_irq_ack()
} }
} }
logerror("z80pio_irq_ack: failed to find an interrupt to ack!\n"); //logerror("z80pio_irq_ack: failed to find an interrupt to ack!\n");
return 0; return 0;
} }
@ -207,7 +207,7 @@ void z80pio_device::z80daisy_irq_reti()
} }
} }
logerror("z80pio_irq_reti: failed to find an interrupt to clear IEO on!\n"); //logerror("z80pio_irq_reti: failed to find an interrupt to clear IEO on!\n");
} }

View File

@ -50,9 +50,10 @@ Notes:
TODO: TODO:
- floppy broken - memory banking is broken
- z80dart wait/ready - z80dart wait/ready
- Winchester hard disk - IMI 7710 Winchester controller
chdman createhd -o imi7710.chd -chs 350,3,10 -ss 1024
- revision E model - revision E model
*/ */
@ -201,7 +202,7 @@ WRITE8_MEMBER( bullet_state::exdsk_w )
*/ */
if (BIT(data, 2)) if (BIT(data, 3))
{ {
m_exdsk_sw = true; m_exdsk_sw = true;
} }
@ -297,7 +298,7 @@ WRITE8_MEMBER( bullet_state::hdcon_w )
if (m_hdcon_sw) if (m_hdcon_sw)
{ {
// FDC clock // FDC clock
m_fdc->set_unscaled_clock(BIT(data, 2) ? XTAL_16MHz/8 : XTAL_16MHz/16); m_fdc->set_unscaled_clock(BIT(data, 2) ? XTAL_16MHz/16 : XTAL_16MHz/8);
// density select // density select
m_fdc->dden_w(BIT(data, 3)); m_fdc->dden_w(BIT(data, 3));