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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
/*****************************************************************************
SunPlus SPG2xx-series SoC peripheral emulation (Video)
**********************************************************************/
#ifndef MAME_MACHINE_SPG2XX_VIDEO_H
#define MAME_MACHINE_SPG2XX_VIDEO_H
#pragma once
#include "spg_renderer.h"
#include "cpu/unsp/unsp.h"
#include "screen.h"
class spg2xx_video_device : public device_t
{
public:
spg2xx_video_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock);
auto guny_in() { return m_guny_in.bind(); }
auto gunx_in() { return m_gunx_in.bind(); }
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(vblank);
uint16_t video_r(offs_t offset);
void video_w(offs_t offset, uint16_t data);
auto sprlimit_read_callback() { return m_sprlimit_read_cb.bind(); }
auto write_video_irq_callback() { return m_video_irq_cb.bind(); }
protected:
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_add_mconfig(machine_config &config) override;
void check_video_irq();
TIMER_CALLBACK_MEMBER(screenpos_hit);
void do_sprite_dma(uint32_t len);
devcb_read16 m_guny_in;
devcb_read16 m_gunx_in;
devcb_read16 m_sprlimit_read_cb;
devcb_write_line m_video_irq_cb;
required_device<unsp_device> m_cpu;
required_device<screen_device> m_screen;
required_shared_ptr<uint16_t> m_scrollram;
required_shared_ptr<uint16_t> m_hcompram;
required_shared_ptr<uint16_t> m_paletteram;
required_shared_ptr<uint16_t> m_spriteram;
required_device<spg_renderer_device> m_renderer;
emu_timer *m_screenpos_timer;
uint16_t m_video_regs[0x100];
};
class spg24x_video_device : public spg2xx_video_device
{
public:
template <typename T, typename U>
spg24x_video_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, T &&cpu_tag, U &&screen_tag)
: spg24x_video_device(mconfig, tag, owner, clock)
{
m_cpu.set_tag(std::forward<T>(cpu_tag));
m_screen.set_tag(std::forward<U>(screen_tag));
}
spg24x_video_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
DECLARE_DEVICE_TYPE(SPG24X_VIDEO, spg24x_video_device)
#endif // MAME_MACHINE_SPG2XX_VIDEO_H
|