summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/inder_vid.cpp
blob: e5005ea52b3722f32f1d42c41dcc7c1778ccdfc5 (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
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
// license:BSD-3-Clause
// copyright-holders:David Haywood
/* Inder / Dinamic Video */

#include "emu.h"
#include "machine/inder_vid.h"

#include "screen.h"


DEFINE_DEVICE_TYPE(INDER_VIDEO, inder_vid_device, "indervd", "Inder / Dinamic TMS Video")


inder_vid_device::inder_vid_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
	: device_t(mconfig, INDER_VIDEO, tag, owner, clock),
/*  device_video_interface(mconfig, *this, false), */
		m_vram(*this, "vram"),
		m_palette(*this, "palette"),
		m_tms(*this, "tms"),
		m_bpp_mode(8)
{
}

void inder_vid_device::megaphx_tms_map(address_map &map)
{

	map(0x00000000, 0x003fffff).ram().share(m_vram); // vram?

	map(0x04000000, 0x0400000f).w("ramdac", FUNC(ramdac_device::index_w)).umask16(0x00ff);
	map(0x04000010, 0x0400001f).rw("ramdac", FUNC(ramdac_device::pal_r), FUNC(ramdac_device::pal_w)).umask16(0x00ff);
	map(0x04000030, 0x0400003f).w("ramdac", FUNC(ramdac_device::index_r_w)).umask16(0x00ff);
	map(0x04000090, 0x0400009f).nopw();
	map(0x7fc00000, 0x7fffffff).ram().mirror(0x80000000);
}


TMS340X0_SCANLINE_RGB32_CB_MEMBER(inder_vid_device::scanline)
{
	uint16_t *vram = &m_vram[(params->rowaddr << 8) & 0x3ff00];
	uint32_t *dest = &bitmap.pix32(scanline);

	const pen_t *paldata = m_palette->pens();

	int coladdr = params->coladdr;
	int x;

	if (m_bpp_mode == 8)
	{
		for (x = params->heblnk; x < params->hsblnk; x += 2)
		{
			uint16_t pixels = vram[coladdr++ & 0xff];
			dest[x + 0] = paldata[pixels & 0xff];
			dest[x + 1] = paldata[pixels >> 8];
		}
	}
	else if (m_bpp_mode == 4)
	{
		for (x = params->heblnk; x < params->hsblnk; x += 4)
		{
			uint16_t pixels = vram[coladdr++ & 0xff];
			dest[x + 3] = paldata[((pixels & 0xf000) >> 12)];
			dest[x + 2] = paldata[((pixels & 0x0f00) >> 8)];
			dest[x + 1] = paldata[((pixels & 0x00f0) >> 4)];
			dest[x + 0] = paldata[((pixels & 0x000f) >> 0)];
		}
	}
	else
	{
		fatalerror("inder_vid_device unsupported mode, not 4bpp or 8bpp");
	}
}


TMS340X0_TO_SHIFTREG_CB_MEMBER(inder_vid_device::to_shiftreg)
{
	if (m_shiftfull == 0)
	{
		//printf("read to shift regs address %08x\n", address);

		memcpy(shiftreg, &m_vram[(address & ~0x1fff) >> 4], 0x400); // & ~0x1fff is needed for round 6
		m_shiftfull = 1;
	}
}

TMS340X0_FROM_SHIFTREG_CB_MEMBER(inder_vid_device::from_shiftreg)
{
//  printf("write from shift regs address %08x\n", address);

	memcpy(&m_vram[(address & ~0x1fff) >> 4], shiftreg, 0x400);

	m_shiftfull = 0;
}

void inder_vid_device::ramdac_map(address_map &map)
{
	map(0x000, 0x3ff).rw("ramdac", FUNC(ramdac_device::ramdac_pal_r), FUNC(ramdac_device::ramdac_rgb888_w));
}

void inder_vid_device::device_add_mconfig(machine_config &config)
{
	TMS34010(config, m_tms, XTAL(40'000'000));
	m_tms->set_addrmap(AS_PROGRAM, &inder_vid_device::megaphx_tms_map);
	m_tms->set_halt_on_reset(true);
	m_tms->set_pixel_clock(XTAL(40'000'000)/12);
	m_tms->set_pixels_per_clock(2);
	m_tms->set_scanline_rgb32_callback(FUNC(inder_vid_device::scanline));
	m_tms->output_int().set_inputline(":maincpu", 4);
	m_tms->set_shiftreg_in_callback(FUNC(inder_vid_device::to_shiftreg));
	m_tms->set_shiftreg_out_callback(FUNC(inder_vid_device::from_shiftreg));

	screen_device &screen(SCREEN(config, "inder_screen", SCREEN_TYPE_RASTER));
	screen.set_raw(XTAL(40'000'000)/12, 424, 0, 338-1, 262, 0, 246-1);
	screen.set_screen_update("tms", FUNC(tms34010_device::tms340x0_rgb32));

	PALETTE(config, m_palette).set_entries(256);

	ramdac_device &ramdac(RAMDAC(config, "ramdac", 0, m_palette));
	ramdac.set_addrmap(0, &inder_vid_device::ramdac_map);
	ramdac.set_split_read(1);
}


void inder_vid_device::device_start()
{
	save_item(NAME(m_shiftfull));
}

void inder_vid_device::device_reset()
{
	m_shiftfull = 0;
}