Added Karateka, Puyo Puyo

This commit is contained in:
Angelo Salese 2013-08-03 00:14:58 +00:00
parent a15a1209ef
commit 688cbdc3a1
3 changed files with 33 additions and 4 deletions

View File

@ -7227,6 +7227,17 @@ Game is named "image", with lowercase i on title screen
</part>
</software>
<software name="karateka" supported="yes">
<description>Karateka</description>
<year>1988</year>
<publisher>Broderbund Japan / Masternet Inc.</publisher>
<part name="flop1" interface="floppy_5_25">
<dataarea name="flop" size="0x138fb0">
<rom name="karateka.d88" size="0x138fb0" crc="d762d4d1" sha1="fb9331c301dd641c3398090330ba906b173c2020" offset="0" />
</dataarea>
</part>
</software>
<!--
TODO: other two disks, in .nfd format
<software name="kawaisou">
@ -11291,10 +11302,26 @@ other two disks
</part>
</software>
<software name="puyopuyo" supported="yes">
<description>Puyo Puyo</description>
<year>1993</year>
<publisher>Compile</publisher>
<part name="flop1" interface="floppy_5_25">
<dataarea name="flop" size="0x135000">
<rom name="puyopuyo a.fdi" size="0x135000" crc="6fe2a103" sha1="bd9aceddd7a3fe62fe0512e5e917784980990f74" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_5_25">
<dataarea name="flop" size="0x135000">
<rom name="puyopuyo b.fdi" size="0x135000" crc="25ae69f4" sha1="f3d05b353db9ae298c80721a921591a61bf91e3e" offset="0" />
</dataarea>
</part>
</software>
<software name="puzznic">
<description>Puzznic</description>
<year>19??</year>
<publisher>Taito</publisher>
<year>1990</year>
<publisher>Taito / Broderbund</publisher>
<part name="flop1" interface="floppy_5_25">
<dataarea name="flop" size="0x135000">
<rom name="puzznic.fdi" size="0x135000" crc="fd475bfe" sha1="7df354065c861db5e47100a3a7dfd35e47abd7fe" offset="0" />

View File

@ -148,7 +148,7 @@ void ym2608_device::device_start()
const ay8910_interface *ay8910_config = m_ay8910_config != NULL ? m_ay8910_config : &default_ay8910_config;
m_irq_handler.resolve();
/* FIXME: Force to use simgle output */
/* FIXME: Force to use single output */
m_psg = ay8910_start_ym(this, ay8910_config);
assert_always(m_psg != NULL, "Error creating YM2608/AY8910 chip");

View File

@ -93,7 +93,7 @@
- Quarth: should do a split screen effect, it doesn't hence there are broken gfxs
- Princess Maker 2: mouse is buggy;
- Princess Maker 2: screen transitions are very ugly (btanb?)
- Puzznic: trips illegal irq 0x41 (?), prints an error on screen.
- Puzznic: trips illegal irq 0x41 (?), prints an error on screen. (PC-9801RS only, writes an 1 to 0x69d2f for whatever reason, almost surely a btanb)
- Runner's High: wrong double height on the title screen;
- Sorcerian, Twilight Zone 3: Fails initial booting, issue with 2dd irq?
- The Incredible Machine: hangs at main menu (YM mis-fires irq?)
@ -3719,6 +3719,8 @@ static MACHINE_CONFIG_DERIVED( pc9801ux, pc9801rs )
MCFG_CPU_IO_MAP(pc9801ux_io)
MCFG_80286_A20(pc9801_state, pc9801_286_a20)
MCFG_CPU_VBLANK_INT_DRIVER("screen", pc9801_state, pc9801_vrtc_irq)
// MCFG_I8237_REPLACE("i8237", 10000000, pc9801rs_dmac_intf) // unknown clock
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( pc9801bx2, pc9801rs )