Previous 199869 Revisions Next

r24057 Wednesday 3rd July, 2013 at 19:34:24 UTC by Tafoid
Differentiate legacy from new hotness (nw)
[src/emu/machine]wd17xx.c

trunk/src/emu/machine/wd17xx.c
r24056r24057
22352235const device_type WD2797 = &device_creator<wd2797_device>;
22362236
22372237wd2797_device::wd2797_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
2238   : wd1770_device(mconfig, WD2797, "WD2797", tag, owner, clock, "wd2797", __FILE__)
2238   : wd1770_device(mconfig, WD2797, "WD2797_LEGACY", tag, owner, clock, "wd2797_l", __FILE__)
22392239{
22402240}
22412241
r24056r24057
22432243const device_type WD1770 = &device_creator<wd1770_device>;
22442244
22452245wd1770_device::wd1770_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
2246   : device_t(mconfig, WD1770, "WD1770", tag, owner, clock, "wd1770", __FILE__)
2246   : device_t(mconfig, WD1770, "WD1770_LEGACY", tag, owner, clock, "wd1770_l", __FILE__)
22472247{
22482248   m_token = global_alloc_clear(wd1770_state);
22492249}
r24056r24057
22852285const device_type WD1772 = &device_creator<wd1772_device>;
22862286
22872287wd1772_device::wd1772_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
2288   : wd1770_device(mconfig, WD1772, "WD1772", tag, owner, clock, "wd1772", __FILE__)
2288   : wd1770_device(mconfig, WD1772, "WD1772_LEGACY", tag, owner, clock, "wd1772_l", __FILE__)
22892289{
22902290}
22912291
r24056r24057
23022302const device_type WD1773 = &device_creator<wd1773_device>;
23032303
23042304wd1773_device::wd1773_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
2305   : wd1770_device(mconfig, WD1773, "WD1773", tag, owner, clock, "wd1773", __FILE__)
2305   : wd1770_device(mconfig, WD1773, "WD1773_LEGACY", tag, owner, clock, "wd1773_l", __FILE__)
23062306{
23072307}
23082308
r24056r24057
23262326const device_type MB8877 = &device_creator<mb8877_device>;
23272327
23282328mb8877_device::mb8877_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
2329   : wd1770_device(mconfig, MB8877, "MB8877", tag, owner, clock, "mb8877", __FILE__)
2329   : wd1770_device(mconfig, MB8877, "MB8877_LEGACY", tag, owner, clock, "mb8877_l", __FILE__)
23302330{
23312331}

Previous 199869 Revisions Next


© 1997-2024 The MAME Team