Previous 199869 Revisions Next

r30723 Friday 30th May, 2014 at 14:04:12 UTC by Tafoid
Device description fixes from MASH (nw)
[src/mame/video]excellent_spr.c tecmo_mix.c tecmo_spr.c

trunk/src/mame/video/tecmo_mix.c
r30722r30723
66const device_type TECMO_MIXER = &device_creator<tecmo_mix_device>;
77
88tecmo_mix_device::tecmo_mix_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
9   : device_t(mconfig, TECMO_MIXER, "Teccmo 16-bit Mixer", tag, owner, clock, "tecmo_mix", __FILE__),
9   : device_t(mconfig, TECMO_MIXER, "Tecmo 16-bit Mixer", tag, owner, clock, "tecmo_mix", __FILE__),
1010      device_video_interface(mconfig, *this),
1111      m_sprpri_shift(0),
1212      m_sprbln_shift(0),
trunk/src/mame/video/tecmo_spr.c
r30722r30723
1616const device_type TECMO_SPRITE = &device_creator<tecmo_spr_device>;
1717
1818tecmo_spr_device::tecmo_spr_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
19   : device_t(mconfig, TECMO_SPRITE, "Teccmo Chained Sprites", tag, owner, clock, "tecmo_spr", __FILE__),
19   : device_t(mconfig, TECMO_SPRITE, "Tecmo Chained Sprites", tag, owner, clock, "tecmo_spr", __FILE__),
2020m_gfxregion(0),
2121m_bootleg(0)
2222{
trunk/src/mame/video/excellent_spr.c
r30722r30723
2020const device_type EXCELLENT_SPRITE = &device_creator<excellent_spr_device>;
2121
2222excellent_spr_device::excellent_spr_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
23   : device_t(mconfig, EXCELLENT_SPRITE, "Excllent 8-bit Sprite", tag, owner, clock, "excellent_spr", __FILE__),
23   : device_t(mconfig, EXCELLENT_SPRITE, "Excellent 8-bit Sprite", tag, owner, clock, "excellent_spr", __FILE__),
2424      device_video_interface(mconfig, *this)
2525{
2626}

Previous 199869 Revisions Next


© 1997-2024 The MAME Team