trunk/src/mess/drivers/pc9801.c
| r18933 | r18934 | |
| 9 | 9 | - proper 8251 uart hook-up on keyboard |
| 10 | 10 | - boot is too slow right now, might be due of the floppy / HDD devices |
| 11 | 11 | - investigate on POR bit |
| 12 | - Write a PC80S31K device (also used on PC-8801 and PC-88VA, it's the FDC + Z80 sub-system); |
| 12 | 13 | |
| 13 | 14 | TODO (PC-9801RS): |
| 14 | 15 | - floppy disk hook-up; |
| r18933 | r18934 | |
| 2666 | 2667 | MCFG_UPD765A_ADD("upd765_2dd", true, true) |
| 2667 | 2668 | MCFG_FLOPPY_DRIVE_ADD("upd765_2hd:0", pc9801_floppies, "525hd", 0, pc9801_floppy_formats) |
| 2668 | 2669 | 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) |
| 2669 | 2672 | |
| 2670 | 2673 | MCFG_SOFTWARE_LIST_ADD("disk_list","pc98") |
| 2671 | 2674 | |
trunk/src/mame/drivers/cntsteer.c
| r18933 | r18934 | |
| 883 | 883 | /* basic machine hardware */ |
| 884 | 884 | MCFG_CPU_ADD("maincpu", M6809, 2000000) /* ? */ |
| 885 | 885 | 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) /* ? */ |
| 887 | 887 | |
| 888 | 888 | MCFG_CPU_ADD("subcpu", M6809, 2000000) /* ? */ |
| 889 | 889 | MCFG_CPU_PROGRAM_MAP(cntsteer_cpu2_map) |
| 890 | MCFG_DEVICE_DISABLE() |
| 890 | 891 | MCFG_CPU_VBLANK_INT_DRIVER("screen", cntsteer_state, nmi_line_pulse) /* ? */ |
| 891 | 892 | |
| 892 | 893 | MCFG_CPU_ADD("audiocpu", M6502, 1500000) /* ? */ |