mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
Device validation fixes: Galaxy Games, Midway, Sega, DECO (nw)
This commit is contained in:
parent
3570cb092d
commit
f148c84eb3
@ -186,7 +186,7 @@ class galgames_starpak2_cart_device : public galgames_cart_device
|
||||
public:
|
||||
// construction/destruction
|
||||
galgames_starpak2_cart_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
|
||||
galgames_cart_device(mconfig, GALGAMES_STARPAK2_CART, "Galaxy Games StarPak 3 Cartridge", tag, owner, clock, "starpak2_cart", __FILE__)
|
||||
galgames_cart_device(mconfig, GALGAMES_STARPAK2_CART, "Galaxy Games StarPak 2 Cartridge", tag, owner, clock, "starpak2_cart", __FILE__)
|
||||
{ }
|
||||
protected:
|
||||
// device-level overrides
|
||||
|
@ -360,7 +360,7 @@ void decocpu_type3_device::device_start()
|
||||
}
|
||||
|
||||
decocpu_type3b_device::decocpu_type3b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: decocpu_type3_device(mconfig, DECOCPU3, "Data East Pinball CPU Board Type 3B", tag, owner, clock, "decocpu3b", __FILE__)
|
||||
: decocpu_type3_device(mconfig, DECOCPU3B, "Data East Pinball CPU Board Type 3B", tag, owner, clock, "decocpu3b", __FILE__)
|
||||
{}
|
||||
|
||||
void decocpu_type3b_device::device_start()
|
||||
|
@ -109,19 +109,12 @@ const device_type MIDWAY_SERIAL_PIC = device_creator<midway_serial_pic_device>;
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// midway_serial_pic2_device - constructor
|
||||
// midway_serial_pic_device - constructor
|
||||
//-------------------------------------------------
|
||||
|
||||
midway_serial_pic_device::midway_serial_pic_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
|
||||
device_t(mconfig, MIDWAY_SERIAL_PIC2, "Midway Serial Pic Simulation", tag, owner, clock, "midway_serial_pic_sim", __FILE__),
|
||||
m_upper(0),
|
||||
m_buff(0),
|
||||
m_idx(0),
|
||||
m_status(0),
|
||||
m_bits(0),
|
||||
m_ormask(0)
|
||||
midway_serial_pic_device(mconfig, MIDWAY_SERIAL_PIC, "Midway Serial Pic Simulation", tag, owner, clock, "midway_serial_pic_sim", __FILE__)
|
||||
{
|
||||
memset(m_data,0,sizeof(m_data));
|
||||
}
|
||||
|
||||
midway_serial_pic_device::midway_serial_pic_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source) :
|
||||
|
@ -807,7 +807,7 @@ void sega_315_5248_multiplier_device::device_reset()
|
||||
//-------------------------------------------------
|
||||
|
||||
sega_315_5249_divider_device::sega_315_5249_divider_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: device_t(mconfig, SEGA_315_5248_MULTIPLIER, "Sega 315-5249 Divider", tag, owner, clock, "sega_315_5249", __FILE__)
|
||||
: device_t(mconfig, SEGA_315_5249_DIVIDER, "Sega 315-5249 Divider", tag, owner, clock, "sega_315_5249", __FILE__)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user