trunk/src/mame/video/tecmo_mix.c
| r30722 | r30723 | |
| 6 | 6 | const device_type TECMO_MIXER = &device_creator<tecmo_mix_device>; |
| 7 | 7 | |
| 8 | 8 | tecmo_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__), |
| 10 | 10 | device_video_interface(mconfig, *this), |
| 11 | 11 | m_sprpri_shift(0), |
| 12 | 12 | m_sprbln_shift(0), |
trunk/src/mame/video/tecmo_spr.c
| r30722 | r30723 | |
| 16 | 16 | const device_type TECMO_SPRITE = &device_creator<tecmo_spr_device>; |
| 17 | 17 | |
| 18 | 18 | tecmo_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__), |
| 20 | 20 | m_gfxregion(0), |
| 21 | 21 | m_bootleg(0) |
| 22 | 22 | { |
trunk/src/mame/video/excellent_spr.c
| r30722 | r30723 | |
| 20 | 20 | const device_type EXCELLENT_SPRITE = &device_creator<excellent_spr_device>; |
| 21 | 21 | |
| 22 | 22 | excellent_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__), |
| 24 | 24 | device_video_interface(mconfig, *this) |
| 25 | 25 | { |
| 26 | 26 | } |