trunk/src/mame/includes/mustache.h
| r18676 | r18677 | |
| 7 | 7 | m_spriteram(*this, "spriteram"){ } |
| 8 | 8 | |
| 9 | 9 | required_shared_ptr<UINT8> m_videoram; |
| 10 | | emu_timer *m_clear_irq_timer; |
| 11 | 10 | tilemap_t *m_bg_tilemap; |
| 12 | 11 | int m_control_byte; |
| 13 | 12 | required_shared_ptr<UINT8> m_spriteram; |
| r18676 | r18677 | |
| 16 | 15 | DECLARE_WRITE8_MEMBER(mustache_scroll_w); |
| 17 | 16 | DECLARE_DRIVER_INIT(mustache); |
| 18 | 17 | TILE_GET_INFO_MEMBER(get_bg_tile_info); |
| 19 | | virtual void machine_start(); |
| 20 | 18 | virtual void video_start(); |
| 21 | 19 | virtual void palette_init(); |
| 22 | 20 | UINT32 screen_update_mustache(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); |
trunk/src/mame/drivers/mustache.c
| r18676 | r18677 | |
| 157 | 157 | GFXDECODE_ENTRY( "gfx2", 0, spritelayout, 0x80, 8 ) |
| 158 | 158 | GFXDECODE_END |
| 159 | 159 | |
| 160 | | void mustache_state::machine_start() |
| 161 | | { |
| 162 | | // do nothing, not even sure why this is here anymore. |
| 163 | | } |
| 164 | | |
| 165 | 160 | TIMER_DEVICE_CALLBACK_MEMBER(mustache_state::mustache_scanline) |
| 166 | 161 | { |
| 167 | 162 | int scanline = param; |
| r18676 | r18677 | |
| 174 | 169 | } |
| 175 | 170 | |
| 176 | 171 | |
| 172 | |
| 177 | 173 | static MACHINE_CONFIG_START( mustache, mustache_state ) |
| 178 | 174 | |
| 179 | 175 | /* basic machine hardware */ |