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
|
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic
/***************************************************************************
Specialist video driver by Miodrag Milanovic
15/03/2008 Preliminary driver.
****************************************************************************/
#include "emu.h"
#include "includes/special.h"
uint32_t special_state::screen_update_special(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
for (int x = 0; x < 48; x++)
{
for (int y = 0; y < 256; y++)
{
uint8_t const code = m_vram[y + x*256];
for (int b = 7; b >= 0; b--)
bitmap.pix(y, x*8+(7-b)) = BIT(code, b);
}
}
return 0;
}
uint32_t special_state::screen_update_specialp(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
for (int x = 0; x < 64; x++)
{
for (int y = 0; y < 256; y++)
{
uint8_t const code = m_vram[y + x*256];
for (int b = 7; b >= 0; b--)
bitmap.pix(y, x*8+(7-b)) = BIT(code, b);
}
}
return 0;
}
static constexpr rgb_t specimx_pens[16] = {
{ 0x00, 0x00, 0x00 }, // 0
{ 0x00, 0x00, 0xaa }, // 1
{ 0x00, 0xaa, 0x00 }, // 2
{ 0x00, 0xaa, 0xaa }, // 3
{ 0xaa, 0x00, 0x00 }, // 4
{ 0xaa, 0x00, 0xaa }, // 5
{ 0xaa, 0x55, 0x00 }, // 6
{ 0xaa, 0xaa, 0xaa }, // 7
{ 0x55, 0x55, 0x55 }, // 8
{ 0x55, 0x55, 0xff }, // 9
{ 0x55, 0xff, 0x55 }, // A
{ 0x55, 0xff, 0xff }, // B
{ 0xff, 0x55, 0x55 }, // C
{ 0xff, 0x55, 0xff }, // D
{ 0xff, 0xff, 0x55 }, // E
{ 0xff, 0xff, 0xff } // F
};
void special_state::specimx_palette(palette_device &palette) const
{
palette.set_pen_colors(0, specimx_pens);
}
uint32_t special_state::screen_update_specimx(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
for (int x = 0; x < 48; x++)
{
for (int y = 0; y < 256; y++)
{
uint8_t const code = m_ram->pointer()[0x9000 + y + x*256];
uint8_t const color = m_specimx_colorram[y + x*256];
for (int b = 7; b >= 0; b--)
bitmap.pix(y, x*8+(7-b)) = (BIT(code, b) ? (color >> 4) : color) & 0x0f;
}
}
return 0;
}
static constexpr rgb_t erik_pens[8] = {
{ 0x00, 0x00, 0x00 }, // 0
{ 0x00, 0x00, 0xff }, // 1
{ 0xff, 0x00, 0x00 }, // 2
{ 0xff, 0x00, 0xff }, // 3
{ 0x00, 0xff, 0x00 }, // 4
{ 0x00, 0xff, 0xff }, // 5
{ 0xff, 0xff, 0x00 }, // 6
{ 0xff, 0xff, 0xff } // 7
};
void special_state::erik_palette(palette_device &palette) const
{
palette.set_pen_colors(0, erik_pens);
}
uint32_t special_state::screen_update_erik(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
uint8_t const *const erik_video_ram_p1 = m_ram->pointer() + 0x9000;
uint8_t const *const erik_video_ram_p2 = m_ram->pointer() + 0xd000;
for (int x = 0; x < 48; x++)
{
for (int y = 0; y < 256; y++)
{
uint8_t code1 = erik_video_ram_p1[y + x*256];
uint8_t code2 = erik_video_ram_p2[y + x*256];
for (int b = 7; b >= 0; b--)
{
uint8_t color1 = ((code1 >> b) & 0x01)==0 ? m_erik_background : m_erik_color_1;
uint8_t color2 = ((code2 >> b) & 0x01)==0 ? m_erik_background : m_erik_color_2;
bitmap.pix(y, x*8+(7-b)) = color1 | color2;
}
}
}
return 0;
}
|