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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/**********************************************************************
Intel 8275/8276 CRT Controller emulation
**********************************************************************
____ ____ ____ ____
LC3 1 |* \_/ | 40 Vcc LC3 1 |* \_/ | 40 Vcc
LC2 2 | | 39 LA0 LC2 2 | | 39 NC
LC1 3 | | 38 LA1 LC1 3 | | 38 NC
LC0 4 | | 37 LTEN LC0 4 | | 37 LTEN
DRQ 5 | | 36 RVV BRDY 5 | | 36 RVV
_DACK 6 | | 35 VSP _BS 6 | | 35 VSP
HRTC 7 | | 34 GPA1 HRTC 7 | | 34 GPA1
VRTC 8 | | 33 GPA0 VRTC 8 | | 33 GPA0
_RD 9 | | 32 HLGT _RD 9 | | 32 HLGT
_WR 10 | 8275 | 31 IRQ _WR 10 | 8276 | 31 INT
LPEN 11 | | 30 CCLK NC 11 | | 30 CCLK
DB0 12 | | 29 CC6 DB0 12 | | 29 CC6
DB1 13 | | 28 CC5 DB1 13 | | 28 CC5
DB2 14 | | 27 CC4 DB2 14 | | 27 CC4
DB3 15 | | 26 CC3 DB3 15 | | 26 CC3
DB4 16 | | 25 CC2 DB4 16 | | 25 CC2
DB5 17 | | 24 CC1 DB5 17 | | 24 CC1
DB6 18 | | 23 CC0 DB6 18 | | 23 CC0
DB7 19 | | 22 _CS DB7 19 | | 22 _CS
GND 20 |___________| 21 A0 GND 20 |___________| 21 C/_P
**********************************************************************/
#ifndef MAME_VIDEO_I8275_H
#define MAME_VIDEO_I8275_H
#pragma once
//**************************************************************************
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
#define I8275_DRAW_CHARACTER_MEMBER(_name) void _name(bitmap_rgb32 &bitmap, int x, int y, uint8_t linecount, uint8_t charcode, uint8_t lineattr, uint8_t lten, uint8_t rvv, uint8_t vsp, uint8_t gpa, uint8_t hlgt)
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> i8275_device
class i8275_device : public device_t,
public device_video_interface
{
public:
typedef device_delegate<void (bitmap_rgb32 &bitmap, int x, int y, uint8_t linecount, uint8_t charcode, uint8_t lineattr, uint8_t lten, uint8_t rvv, uint8_t vsp, uint8_t gpa, uint8_t hlgt)> draw_character_delegate;
// construction/destruction
i8275_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
void set_character_width(int value) { m_hpixels_per_column = value; }
void set_refresh_hack(bool hack) { m_refresh_hack = hack; }
template <typename... T> void set_display_callback(T &&... args) { m_display_cb.set(std::forward<T>(args)...); }
auto drq_wr_callback() { return m_write_drq.bind(); }
auto irq_wr_callback() { return m_write_irq.bind(); }
auto hrtc_wr_callback() { return m_write_hrtc.bind(); }
auto vrtc_wr_callback() { return m_write_vrtc.bind(); }
auto lc_wr_callback() { return m_write_lc.bind(); }
uint8_t read(offs_t offset);
void write(offs_t offset, uint8_t data);
void dack_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER( lpen_w );
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
protected:
i8275_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param) override;
void vrtc_start();
void vrtc_end();
void dma_start();
void recompute_parameters();
enum
{
TIMER_HRTC_ON,
TIMER_DRQ_ON,
TIMER_SCANLINE
};
enum
{
ST_IE = 0x40,
ST_IR = 0x20,
ST_LP = 0x10,
ST_IC = 0x08,
ST_VE = 0x04,
ST_DU = 0x02,
ST_FO = 0x01
};
enum
{
CMD_RESET = 0,
CMD_START_DISPLAY,
CMD_STOP_DISPLAY,
CMD_READ_LIGHT_PEN,
CMD_LOAD_CURSOR,
CMD_ENABLE_INTERRUPT,
CMD_DISABLE_INTERRUPT,
CMD_PRESET_COUNTERS
};
enum
{
REG_SCN1 = 0,
REG_SCN2,
REG_SCN3,
REG_SCN4,
REG_CUR_COL,
REG_CUR_ROW,
REG_LPEN_COL,
REG_LPEN_ROW,
REG_DMA
};
enum
{
CA_H = 0x01,
CA_B = 0x02,
CA_CCCC = 0x3c,
CA_LTEN = 0x01,
CA_VSP = 0x02,
CA_LA0 = 0x04,
CA_LA1 = 0x08
};
enum
{
SCC_END_OF_ROW = 0xf0,
SCC_END_OF_ROW_DMA = 0xf1,
SCC_END_OF_SCREEN = 0xf2,
SCC_END_OF_SCREEN_DMA = 0xf3
};
enum
{
FAC_H = 0x01,
FAC_B = 0x02,
FAC_GG = 0x0c,
FAC_R = 0x10,
FAC_U = 0x20
};
static const int character_attribute[3][16];
devcb_write_line m_write_irq;
devcb_write_line m_write_drq;
devcb_write_line m_write_hrtc;
devcb_write_line m_write_vrtc;
devcb_write8 m_write_lc;
draw_character_delegate m_display_cb;
int m_hpixels_per_column;
bool m_refresh_hack;
bitmap_rgb32 m_bitmap;
uint8_t m_status;
uint8_t m_param[REG_DMA + 1];
int m_param_idx;
int m_param_end;
uint8_t m_buffer[2][80];
uint8_t m_fifo[2][16];
int m_buffer_idx;
int m_fifo_idx;
int m_dma_idx;
uint8_t m_dma_last_char;
int m_buffer_dma;
int m_lpen;
int m_scanline;
int m_irq_scanline;
int m_vrtc_scanline;
int m_vrtc_drq_scanline;
bool m_dma_stop;
bool m_end_of_screen;
bool m_preset;
int m_cursor_blink;
int m_char_blink;
uint8_t m_stored_attr;
uint8_t m_field_attr;
// timers
emu_timer *m_hrtc_on_timer;
emu_timer *m_drq_on_timer;
emu_timer *m_scanline_timer;
};
class i8276_device : public i8275_device
{
public:
// construction/destruction
i8276_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
// device type definition
DECLARE_DEVICE_TYPE(I8275, i8275_device)
DECLARE_DEVICE_TYPE(I8276, i8276_device)
#endif // MAME_VIDEO_I8275_H
|