blob: 195a74db1edbdf7706bed45ec120e18e438821d0 (
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
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
81
|
// license:BSD-3-Clause
// copyright-holders:Sandro Ronco
/***************************************************************************
Hitachi HD44352 LCD controller
***************************************************************************/
#pragma once
#ifndef __hd44352_H__
#define __hd44352_H__
#define MCFG_HD44352_ON_CB(_devcb) \
devcb = &hd44352_device::set_on_callback(*device, DEVCB2_##_devcb);
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> hd44352_device
class hd44352_device :
public device_t
{
public:
// construction/destruction
hd44352_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
template<class _Object> static devcb2_base &set_on_callback(device_t &device, _Object object) { return downcast<hd44352_device &>(device).m_on_cb.set_callback(object); }
// device interface
UINT8 data_read();
void data_write(UINT8 data);
void control_write(UINT8 data);
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
virtual void device_validity_check(validity_checker &valid) const;
private:
UINT8 compute_newval(UINT8 type, UINT8 oldval, UINT8 newval);
UINT8 get_char(UINT16 pos);
static const device_timer_id ON_TIMER = 1;
emu_timer *m_on_timer;
UINT8 m_video_ram[2][0x180];
UINT8 m_control_lines;
UINT8 m_data_bus;
UINT8 m_par[3];
UINT8 m_state;
UINT16 m_bank;
UINT16 m_offset;
UINT8 m_char_width;
UINT8 m_lcd_on;
UINT8 m_scroll;
UINT32 m_contrast;
UINT8 m_custom_char[4][8]; // 4 chars * 8 bytes
UINT8 m_byte_count;
UINT8 m_cursor_status;
UINT8 m_cursor[8];
UINT8 m_cursor_x;
UINT8 m_cursor_y;
UINT8 m_cursor_lcd;
devcb2_write_line m_on_cb; // ON line callback
};
// device type definition
extern const device_type HD44352;
#endif
|