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
|
// license:BSD-3-Clause
// copyright-holders:Tim Schuerewegen
/***************************************************************************
Hitachi HD66421 LCD Controller
(c) 2001-2007 Tim Schuerewegen
***************************************************************************/
#ifndef MAME_VIDEO_HD66421_H
#define MAME_VIDEO_HD66421_H
#pragma once
#include "emupal.h"
///*************************************************************************
// TYPE DEFINITIONS
///*************************************************************************
// ======================> hd66421_device
class hd66421_device : public device_t,
public device_memory_interface
{
public:
static constexpr unsigned WIDTH = 160;
static constexpr unsigned HEIGHT = 100;
// construction/destruction
hd66421_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
uint8_t reg_idx_r();
void reg_idx_w(uint8_t data);
uint8_t reg_dat_r();
void reg_dat_w(uint8_t data);
uint32_t update_screen(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
protected:
// device-level overrides
virtual void device_start() override ATTR_COLD;
virtual void device_add_mconfig(machine_config &config) override ATTR_COLD;
// device_config_memory_interface overrides
virtual space_config_vector memory_space_config() const override;
// address space configurations
const address_space_config m_space_config;
inline uint8_t readbyte(offs_t address);
inline void writebyte(offs_t address, uint8_t data);
void plot_pixel(bitmap_ind16 &bitmap, int x, int y, uint32_t color);
private:
uint8_t m_cmd, m_reg[32];
int m_x, m_y;
required_device<palette_device> m_palette;
void hd66421(address_map &map) ATTR_COLD;
void hd66421_palette(palette_device &palette) const;
};
// device type definition
DECLARE_DEVICE_TYPE(HD66421, hd66421_device)
#endif // MAME_VIDEO_HD66421_H
|