Previous 199869 Revisions Next

r26306 Wednesday 20th November, 2013 at 15:26:19 UTC by Curt Coder
(MESS) wmbullet: Fixed floppy. [Curt Coder]
[src/emu/machine]z80pio.c
[src/mess/drivers]bullet.c

trunk/src/mess/drivers/bullet.c
r26305r26306
5050
5151    TODO:
5252
53    - floppy broken
53    - memory banking is broken
5454    - z80dart wait/ready
55    - Winchester hard disk
55    - IMI 7710 Winchester controller
56       chdman createhd -o imi7710.chd -chs 350,3,10 -ss 1024
5657    - revision E model
5758
5859*/
r26305r26306
201202
202203   */
203204
204   if (BIT(data, 2))
205   if (BIT(data, 3))
205206   {
206207      m_exdsk_sw = true;
207208   }
r26305r26306
297298   if (m_hdcon_sw)
298299   {
299300      // FDC clock
300      m_fdc->set_unscaled_clock(BIT(data, 2) ? XTAL_16MHz/8 : XTAL_16MHz/16);
301      m_fdc->set_unscaled_clock(BIT(data, 2) ? XTAL_16MHz/16 : XTAL_16MHz/8);
301302
302303      // density select
303304      m_fdc->dden_w(BIT(data, 3));
trunk/src/emu/machine/z80pio.c
r26305r26306
178178      }
179179   }
180180
181   logerror("z80pio_irq_ack: failed to find an interrupt to ack!\n");
181   //logerror("z80pio_irq_ack: failed to find an interrupt to ack!\n");
182182
183183   return 0;
184184}
r26305r26306
207207      }
208208   }
209209
210   logerror("z80pio_irq_reti: failed to find an interrupt to clear IEO on!\n");
210   //logerror("z80pio_irq_reti: failed to find an interrupt to clear IEO on!\n");
211211}
212212
213213

Previous 199869 Revisions Next


© 1997-2024 The MAME Team