summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/hp9825_optrom.cpp
blob: b49ed6f48460f7e1b1a6476a98f0c4766255bcc9 (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
// license:BSD-3-Clause
// copyright-holders: F. Ulivi
/*********************************************************************

    hp9825_optrom.cpp

    Optional ROMs for HP9825 systems

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

#include "emu.h"
#include "hp9825_optrom.h"
#include "softlist.h"

// Debugging
//#define VERBOSE 1
#include "logmacro.h"

DEFINE_DEVICE_TYPE(HP9825_OPTROM, hp9825_optrom_device, "hp9825_optrom", "HP9825 optional ROM")

struct optrom_region {
	offs_t m_start;
	offs_t m_size;
	const char *m_tag;
};

constexpr std::array<struct optrom_region , 8> region_tab =
	{{
	  { 0x3000 , 0x400 , "rom3000" },
	  { 0x3400 , 0x400 , "rom3400" },
	  { 0x3800 , 0x400 , "rom3800" },
	  { 0x3c00 , 0x400 , "rom3c00" },
	  { 0x4000 , 0x400 , "rom4000" },
	  { 0x4400 , 0x800 , "rom4400" },
	  { 0x4c00 , 0x400 , "rom4c00" },
	  { 0x5c00 ,0x2000 , "rom5c00" }
	}};

// +--------------------+
// |hp9825_optrom_device|
// +--------------------+
hp9825_optrom_device::hp9825_optrom_device(machine_config const &mconfig, char const *tag, device_t *owner)
	: hp9825_optrom_device(mconfig, tag, owner, (uint32_t)0)
{
}

hp9825_optrom_device::hp9825_optrom_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
	: device_t(mconfig, HP9825_OPTROM, tag, owner, clock)
	, device_image_interface(mconfig, *this)
	, m_rom_limit(0xffffU)
	, m_loaded_regions(0)
	, m_space_r(nullptr)
	, m_bank(*this , "rombank")
{
}

hp9825_optrom_device::~hp9825_optrom_device()
{
}

void hp9825_optrom_device::install_rw_handlers(address_space *space_r , address_space *space_w)
{
	LOG("limit=%04x\n" , m_rom_limit);
	m_loaded_regions = 0;
	m_space_r = space_r;

	unsigned mask = 1;

	for (const struct optrom_region& reg : region_tab) {
		uint8_t *ptr = get_software_region(reg.m_tag);
		if (ptr != nullptr) {
			LOG("%s loaded\n" , reg.m_tag);
			if (reg.m_start == 0x5c00) {
				space_r->install_rom(0x3000 , 0x33ff , ptr);
				space_r->install_device(0x5c00 , 0x5fff , *m_bank , &address_map_bank_device::amap16);
				m_bank->space(AS_PROGRAM).install_rom(0 , 0x1fff , ptr);
			} else {
				space_r->install_rom(reg.m_start , reg.m_start + reg.m_size - 1 , ptr);
			}
			m_loaded_regions |= mask;
		}
		mask <<= 1;
	}
	if (space_w != nullptr) {
		space_w->install_write_tap(0 , 0x3ff , "bank_switch" ,
								   [this](offs_t offset, u16 &data, u16 mem_mask) {
									   if (BIT(offset , 5)) {
										   LOG("bank = %u\n" , offset & 7);
										   m_bank->set_bank(offset & 7);
									   }
								   });
	}
}

void hp9825_optrom_device::device_add_mconfig(machine_config &config)
{
	ADDRESS_MAP_BANK(config, m_bank).set_options(ENDIANNESS_BIG, 16, 13, 0x400).set_shift(-1);
}

void hp9825_optrom_device::device_start()
{
}

image_init_result hp9825_optrom_device::call_load()
{
	LOG("hp9825_optrom: call_load\n");
	if (!loaded_through_softlist()) {
		LOG("hp9825_optrom: must be loaded from sw list\n");
		return image_init_result::FAIL;
	}

	for (const struct optrom_region& reg : region_tab) {
		auto len = get_software_region_length(reg.m_tag) / 2;
		if (len != 0) {
			if (len != reg.m_size) {
				LOG("Region %s: wrong size (%u should be %u)\n" , reg.m_tag , len , reg.m_size);
				return image_init_result::FAIL;
			}
			if (reg.m_start >= m_rom_limit) {
				LOG("Region %s beyond ROM limit (start=%04x , limit=%04x)\n" , reg.m_tag , reg.m_start , m_rom_limit);
				return image_init_result::FAIL;
			}
		}
	}

	return image_init_result::PASS;
}

void hp9825_optrom_device::call_unload()
{
	LOG("hp9825_optrom: call_unload\n");
	if (m_space_r != nullptr && m_loaded_regions) {
		unsigned mask = 1;

		for (const struct optrom_region& reg : region_tab) {
			if (m_loaded_regions & mask) {
				if (reg.m_start == 0x5c00) {
					m_space_r->unmap_read(0x3000 , 0x33ff);
					m_space_r->unmap_read(0x5c00 , 0x5fff);
					m_bank->space(AS_PROGRAM).unmap_read(0 , 0x1fff);
				} else {
					m_space_r->unmap_read(reg.m_start , reg.m_start + reg.m_size - 1);
				}
				LOG("%s unloaded\n" , reg.m_tag);
			}
			mask <<= 1;
		}
		m_loaded_regions = 0;
	}
	machine().schedule_soft_reset();
}