Actually hook up the ROMs so we're valid ISO C again (nw)

This commit is contained in:
arbee 2015-10-24 16:34:47 -04:00
parent 6459e125a0
commit e0297123c2
2 changed files with 7 additions and 0 deletions

View File

@ -1321,3 +1321,9 @@ ROM_START( psxcd )
ROM_SYSTEM_BIOS( 15, "DTL-H1202", "DTL-H1202 PAL [SC430920]" )
ROMX_LOAD( "sc430920.s19", 0x0000, 0xb195, CRC(8380a5a2) SHA1(6fe45fd6fb96b12a25a45f39b5efd0be5e3f3e86), ROM_BIOS(16) )
ROM_END
const rom_entry *psxcd_device::device_rom_region() const
{
return ROM_NAME( psxcd );
}

View File

@ -38,6 +38,7 @@ protected:
virtual void device_stop();
virtual void device_reset();
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
virtual const rom_entry *device_rom_region() const;
private:
void write_command(UINT8 byte);