Previous 199869 Revisions Next

r19346 Thursday 6th December, 2012 at 00:18:37 UTC by Angelo Salese
Note for OG
[src/mess/drivers]pc9801.c

trunk/src/mess/drivers/pc9801.c
r19345r19346
2929
3030   floppy issues TODO (certain fail, even with a stock F version)
3131   - AdventureLand: "disk offline" error
32   - Dokkin Minako Sensei!
3332   - Microsoft Windows 1.0 MSDOS.SYS error (can be bypassed by loading MS-DOS first)
33   \- these two happens due of a fail in sense drive status ready line (bit 5)
3434
35   - Dokkin Minako Sensei!
36
37
3538   List of per-game TODO:
3639   - 4D Boxing: tries to format User Disk;
3740   - Absolutely Mahjong: Epson splash screen doesn't appear at all, why?
r19345r19346
25852588static INPUT_PORTS_START( pc9801rs )
25862589   PORT_INCLUDE( pc9801 )
25872590
2591   PORT_MODIFY("DSW2")
2592   PORT_DIPNAME( 0x80, 0x80, "GDC clock" ) PORT_DIPLOCATION("SW1:8")
2593   PORT_DIPSETTING(    0x80, "2.5 MHz" )
2594   PORT_DIPSETTING(    0x00, "5 MHz" )
2595
25882596   PORT_MODIFY("ROM_LOAD")
25892597   PORT_BIT( 0x03, IP_ACTIVE_LOW, IPT_UNUSED )
25902598INPUT_PORTS_END
r19345r19346
33493357
33503358   MCFG_SOUND_ADD("opn", YM2203, 4000000) // unknown clock / divider
33513359   MCFG_SOUND_CONFIG(pc98_ym2203_intf)
3352   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
3360   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
33533361
33543362   MCFG_SOUND_ADD(BEEPER_TAG, BEEP, 0)
3355   MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.50)
3363   MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.15)
33563364MACHINE_CONFIG_END
33573365
33583366#if 0
r19345r19346
34113419
34123420   MCFG_SOUND_ADD("opn", YM2203, 4000000) // unknown clock / divider
34133421   MCFG_SOUND_CONFIG(pc98_ym2203_intf)
3414   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
3422   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
34153423
34163424   MCFG_SOUND_ADD(BEEPER_TAG, BEEP, 0)
3417   MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.50)
3425   MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.15)
34183426MACHINE_CONFIG_END
34193427
34203428static const unsigned i286_address_mask = 0x00ffffff;
r19345r19346
34743482
34753483   MCFG_SOUND_ADD("opn", YM2203, 4000000) // unknown clock / divider
34763484   MCFG_SOUND_CONFIG(pc98_ym2203_intf)
3477   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
3485   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
34783486
34793487   MCFG_SOUND_ADD(BEEPER_TAG, BEEP, 0)
3480   MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.50)
3488   MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.15)
34813489MACHINE_CONFIG_END
34823490
34833491static MACHINE_CONFIG_DERIVED( pc9821v20, pc9821 )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team