Previous 199869 Revisions Next

r18934 Monday 12th November, 2012 at 20:38:43 UTC by Angelo Salese
Hooked-up floppy loading for upd765_2dd interface too, nw
[src/mame/drivers]bingor.c cntsteer.c
[src/mess/drivers]pc9801.c

trunk/src/mess/drivers/pc9801.c
r18933r18934
99    - proper 8251 uart hook-up on keyboard
1010    - boot is too slow right now, might be due of the floppy / HDD devices
1111    - investigate on POR bit
12   - Write a PC80S31K device (also used on PC-8801 and PC-88VA, it's the FDC + Z80 sub-system);
1213
1314    TODO (PC-9801RS):
1415    - floppy disk hook-up;
r18933r18934
26662667   MCFG_UPD765A_ADD("upd765_2dd", true, true)
26672668   MCFG_FLOPPY_DRIVE_ADD("upd765_2hd:0", pc9801_floppies, "525hd", 0, pc9801_floppy_formats)
26682669   MCFG_FLOPPY_DRIVE_ADD("upd765_2hd:1", pc9801_floppies, "525hd", 0, pc9801_floppy_formats)
2670   MCFG_FLOPPY_DRIVE_ADD("upd765_2dd:0", pc9801_floppies, "525hd", 0, pc9801_floppy_formats)
2671   MCFG_FLOPPY_DRIVE_ADD("upd765_2dd:1", pc9801_floppies, "525hd", 0, pc9801_floppy_formats)
26692672
26702673   MCFG_SOFTWARE_LIST_ADD("disk_list","pc98")
26712674
trunk/src/mame/drivers/cntsteer.c
r18933r18934
883883   /* basic machine hardware */
884884   MCFG_CPU_ADD("maincpu", M6809, 2000000)       /* ? */
885885   MCFG_CPU_PROGRAM_MAP(cntsteer_cpu1_map)
886   MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state,  nmi_line_pulse) /* ? */
886//   MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state,  nmi_line_pulse) /* ? */
887887
888888   MCFG_CPU_ADD("subcpu", M6809, 2000000)       /* ? */
889889   MCFG_CPU_PROGRAM_MAP(cntsteer_cpu2_map)
890   MCFG_DEVICE_DISABLE()
890891   MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state,  nmi_line_pulse) /* ? */
891892
892893   MCFG_CPU_ADD("audiocpu", M6502, 1500000)        /* ? */
trunk/src/mame/drivers/bingor.c
r18933r18934
533533}
534534
535535static ADDRESS_MAP_START( pic_io_map, AS_IO, 8, bingor_state )
536   AM_RANGE(0x00, 0x00) AM_WRITENOP
536537   AM_RANGE(0x02, 0x02) AM_READ(test8_r)
537538   AM_RANGE(0x10, 0x10) AM_READNOP
538539ADDRESS_MAP_END

Previous 199869 Revisions Next


© 1997-2024 The MAME Team