summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/electron/cart/romp144.cpp
blob: de947454fd84a02496101bcd32fff6fe367d3e6a (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
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
// license:BSD-3-Clause
// copyright-holders:Nigel Barnes
/**********************************************************************

    JAFA Systems ROMPlus-144

**********************************************************************/


#include "emu.h"
#include "romp144.h"


//**************************************************************************
//  DEVICE DEFINITIONS
//**************************************************************************

DEFINE_DEVICE_TYPE(ELECTRON_ROMP144, electron_romp144_device, "electron_romp144", "JAFA Systems ROMPlus-144")


//-------------------------------------------------
//  device_add_mconfig - add device configuration
//-------------------------------------------------

void electron_romp144_device::device_add_mconfig(machine_config &config)
{
	/* rom sockets */
	GENERIC_SOCKET(config, m_romslot[0], generic_plain_slot, "electron_rom", "bin,rom");
	m_romslot[0]->set_device_load(FUNC(electron_romp144_device::rom0));
	GENERIC_SOCKET(config, m_romslot[1], generic_plain_slot, "electron_rom", "bin,rom");
	m_romslot[1]->set_device_load(FUNC(electron_romp144_device::rom1));
	GENERIC_SOCKET(config, m_romslot[2], generic_plain_slot, "electron_rom", "bin,rom");
	m_romslot[2]->set_device_load(FUNC(electron_romp144_device::rom2));
	GENERIC_SOCKET(config, m_romslot[3], generic_plain_slot, "electron_rom", "bin,rom");
	m_romslot[3]->set_device_load(FUNC(electron_romp144_device::rom3));
	GENERIC_SOCKET(config, m_romslot[4], generic_plain_slot, "electron_rom", "bin,rom");
	m_romslot[4]->set_device_load(FUNC(electron_romp144_device::rom4));
	GENERIC_SOCKET(config, m_romslot[5], generic_plain_slot, "electron_rom", "bin,rom");
	m_romslot[5]->set_device_load(FUNC(electron_romp144_device::rom5));
	GENERIC_SOCKET(config, m_romslot[6], generic_plain_slot, "electron_rom", "bin,rom");
	m_romslot[6]->set_device_load(FUNC(electron_romp144_device::rom6));
}

//**************************************************************************
//  LIVE DEVICE
//**************************************************************************

//-------------------------------------------------
//  electron_romp144_device - constructor
//-------------------------------------------------

electron_romp144_device::electron_romp144_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
	: device_t(mconfig, ELECTRON_ROMP144, tag, owner, clock)
	, device_electron_cart_interface(mconfig, *this)
	, m_romslot(*this, "rom%u", 7)
{
}

//-------------------------------------------------
//  device_start - device-specific startup
//-------------------------------------------------

void electron_romp144_device::device_start()
{
	m_rom_select = 0xff;
	m_rom_latch = 0xff;

	save_item(NAME(m_rom_select));
	save_item(NAME(m_rom_latch));
}

//-------------------------------------------------
//  read - cartridge data read
//-------------------------------------------------

uint8_t electron_romp144_device::read(offs_t offset, int infc, int infd, int romqa, int oe, int oe2)
{
	uint8_t data = 0xff;

	if (oe)
	{
		if (romqa)
		{
			if ((m_rom_select & 0x07) == 0x00)
				data = m_ram[offset & 0x3fff];
			else
				data = m_romslot[(m_rom_select & 0x07) - 1]->read_rom(offset & 0x3fff);
		}
		else
		{
			if ((m_rom_select & 0x0f) == 0x08)
				data = m_ram[(offset & 0x3fff) | 0x4000];
			else
				data = m_rom[offset & 0x1fff];

			/* roms selected with a read to latch */
			if ((offset & 0x3f00) == 0x3f00)
			{
				m_rom_latch = offset & 0x0f;
			}
		}
	}

	return data;
}

//-------------------------------------------------
//  write - cartridge data write
//-------------------------------------------------

void electron_romp144_device::write(offs_t offset, uint8_t data, int infc, int infd, int romqa, int oe, int oe2)
{
	if (oe)
	{
		if (romqa)
		{
			if ((m_rom_select & 0x07) == 0x00)
				m_ram[offset & 0x3fff] = data;
		}
		else
		{
			if ((m_rom_select & 0x0f) == 0x08)
				m_ram[(offset & 0x3fff) | 0x4000] = data;

			/* roms selected with a write to select */
			if ((offset & 0x3f00) == 0x3f00)
			{
				/* does the write match the read (upper RAM cannot be de-selected to protect *RSUBSTITUTE) */
				if (m_rom_latch == (offset & 0x0f) && m_rom_select != 0x08)
				{
					m_rom_select = m_rom_latch;
				}
			}
		}
	}
}


//**************************************************************************
//  IMPLEMENTATION
//**************************************************************************

image_init_result electron_romp144_device::load_rom(device_image_interface &image, generic_slot_device *slot)
{
	uint32_t size = slot->common_get_size("rom");

	// socket accepts 8K and 16K ROM only
	if (size != 0x2000 && size != 0x4000)
	{
		image.seterror(IMAGE_ERROR_UNSPECIFIED, "Invalid size: Only 8K/16K is supported");
		return image_init_result::FAIL;
	}

	slot->rom_alloc(0x4000, GENERIC_ROM8_WIDTH, ENDIANNESS_LITTLE);
	slot->common_load_rom(slot->get_rom_base(), size, "rom");

	// mirror 8K ROMs
	uint8_t *crt = slot->get_rom_base();
	if (size <= 0x2000) memcpy(crt + 0x2000, crt, 0x2000);

	return image_init_result::PASS;
}