summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tigeroad_spr.h
blob: b41e049e34dfe7f5af76fae96ddafecc500f5942 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// license:BSD-3-Clause
// copyright-holders:David Haywood
#ifndef MAME_VIDEO_TIGEROAD_SPR_H
#define MAME_VIDEO_TIGEROAD_SPR_H

#pragma once

class tigeroad_spr_device : public device_t, public device_gfx_interface
{
public:
	tigeroad_spr_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);

	// configurations
	void set_color_base(u16 base) { m_colbase = base; }

	void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, u16* ram, u32 size, bool flip_screen, bool rev_y);

protected:
	virtual void device_start() override;
	virtual void device_reset() override;

private:
	required_memory_region m_gfx_region;

	// internal states
	u16 m_colbase;
};

DECLARE_DEVICE_TYPE(TIGEROAD_SPRITE, tigeroad_spr_device)

#endif // MAME_VIDEO_TIGEROAD_SPR_H