mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
bus/scsi/cdu76s.cpp: dumped ROM [hammy]
This commit is contained in:
parent
fcbfe40efb
commit
6148f4b297
2 changed files with 13 additions and 0 deletions
|
@ -46,3 +46,13 @@ sony_cdu76s_device::sony_cdu76s_device(const machine_config &mconfig, const char
|
|||
scsicd_device(mconfig, CDU76S, tag, owner, clock)
|
||||
{
|
||||
}
|
||||
|
||||
ROM_START(cdu76s)
|
||||
ROM_REGION(0x10000, "eprom", 0)
|
||||
ROM_LOAD("76s.1.1c.ic206", 0x00000, 0x10000, CRC(8a233f19) SHA1(5f3c3f1ec181cb7f18daea5c8c592f6910aac3b2) )
|
||||
ROM_END
|
||||
|
||||
const tiny_rom_entry *sony_cdu76s_device::device_rom_region() const
|
||||
{
|
||||
return ROM_NAME(cdu76s);
|
||||
}
|
||||
|
|
|
@ -23,6 +23,9 @@ public:
|
|||
|
||||
virtual void ExecCommand() override;
|
||||
virtual void ReadData( uint8_t *data, int dataLength ) override;
|
||||
|
||||
protected:
|
||||
virtual const tiny_rom_entry *device_rom_region() const override;
|
||||
};
|
||||
|
||||
// device type definition
|
||||
|
|
Loading…
Reference in a new issue