summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/mbee.h
blob: 8cb40b3d5e0b8de0f86d2727bf931b2d8ea16853 (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
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
// license:BSD-3-Clause
// copyright-holders:Robbbert
/*****************************************************************************
 *
 * includes/mbee.h
 *
 ****************************************************************************/
#ifndef MAME_INCLUDES_MBEE_H
#define MAME_INCLUDES_MBEE_H

#pragma once

#include "bus/centronics/ctronics.h"
#include "bus/generic/carts.h"
#include "bus/generic/slot.h"

#include "cpu/z80/z80.h"
#include "machine/z80daisy.h"

#include "imagedev/cassette.h"
#include "imagedev/floppy.h"
#include "imagedev/snapquik.h"

#include "machine/buffer.h"
#include "machine/mc146818.h"
#include "machine/wd_fdc.h"
#include "machine/z80pio.h"

#include "sound/spkrdev.h"

#include "video/mc6845.h"

#include "machine/timer.h"
#include "emupal.h"
#include "screen.h"


class mbee_state : public driver_device
{
public:
	mbee_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag)
		, m_palette(*this, "palette")
		, m_maincpu(*this, "maincpu")
		, m_pio(*this, "z80pio")
		, m_cassette(*this, "cassette")
		, m_speaker(*this, "speaker")
		, m_centronics(*this, "centronics")
		, m_cent_data_out(*this, "cent_data_out")
		, m_crtc(*this, "crtc")
		, m_fdc(*this, "fdc")
		, m_floppy0(*this, "fdc:0")
		, m_floppy1(*this, "fdc:1")
		, m_rtc(*this, "rtc")
		, m_pakdef(*this, "pakdef")
		, m_netdef(*this, "netdef")
		, m_p_pakdef(*this, "pakdef")
		, m_p_netdef(*this, "netdef")
		, m_basic(*this, "basic")
		, m_io_x7(*this, "X.7")
		, m_io_oldkb(*this, "X.%u", 0U)
		, m_io_newkb(*this, "Y.%u", 0U)
		, m_io_config(*this, "CONFIG")
		, m_screen(*this, "screen")
		, m_bankr(*this, "bankr%d", 0U)
		, m_bankw(*this, "bankw%d", 0U)
		, m_pak(*this, "optrom%u", 0U)  // "rom" causes issues
		{
			for (u8 n : m_pak_extended)
				m_pak_extended[n] = 0;
		}

	void mbee56(machine_config &config);
	void mbeeppc(machine_config &config);
	void mbee128(machine_config &config);
	void mbee256(machine_config &config);
	void mbee(machine_config &config);
	void mbeett(machine_config &config);
	void mbeeic(machine_config &config);
	void mbeepc85(machine_config &config);
	void mbee128p(machine_config &config);
	void mbeepp(machine_config &config);
	void remove_carts(machine_config &config);
	void remove_quick(machine_config &config);

	void init_mbee()     { m_features = 0x00; }
	void init_mbeett()   { m_features = 0x0d; }
	void init_mbeeppc()  { m_features = 0x09; }
	void init_mbeepp()   { m_features = 0x39; }
	void init_mbeeic()   { m_features = 0x01; }
	void init_mbee56()   { m_features = 0x03; }
	void init_mbee128()  { m_features = 0x11; }
	void init_mbee128p() { m_features = 0x19; }
	void init_mbee256()  { m_features = 0x2d; }

private:
	void port04_w(u8 data);
	void port06_w(u8 data);
	u8 port07_r();
	u8 port08_r();
	void port08_w(u8 data);
	void port0a_w(u8 data);
	void port0b_w(u8 data);
	u8 port18_r();
	u8 port1c_r();
	void port1c_w(u8 data);
	void port50_w(u8 data);
	u8 telcom_r(offs_t);
	u8 speed_r(offs_t);
	void m6545_index_w(u8 data);
	void m6545_data_w(u8 data);
	u8 video_low_r(offs_t offset);
	u8 video_high_r(offs_t offset);
	void video_low_w(offs_t offset, u8 data);
	void video_high_w(offs_t offset, u8 data);
	void pio_port_b_w(u8 data);
	u8 pio_port_b_r();
	DECLARE_WRITE_LINE_MEMBER(pio_ardy);
	DECLARE_WRITE_LINE_MEMBER(crtc_vs);
	u8 fdc_status_r();
	u8 pak_r(offs_t);
	u8 net_r(offs_t);
	void fdc_motor_w(u8 data);
	void standard_palette(palette_device &palette) const;
	void premium_palette(palette_device &palette) const;
	uint32_t screen_update_mbee(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
	TIMER_DEVICE_CALLBACK_MEMBER(newkb_timer);
	image_init_result load_cart(device_image_interface &image, generic_slot_device *slot, u8);
	void unload_cart(u8);
	DECLARE_QUICKLOAD_LOAD_MEMBER(quickload_cb);
	template <u8 T> DECLARE_DEVICE_IMAGE_LOAD_MEMBER(pak_load) { return load_cart(image, m_pak[T], T); }
	template <u8 T> DECLARE_DEVICE_IMAGE_UNLOAD_MEMBER(pak_unload) { unload_cart(T); }
	WRITE_LINE_MEMBER(rtc_irq_w);
	WRITE_LINE_MEMBER(fdc_intrq_w);
	WRITE_LINE_MEMBER(fdc_drq_w);
	MC6845_UPDATE_ROW(crtc_update_row);
	MC6845_ON_UPDATE_ADDR_CHANGED(crtc_update_addr);
	void machine_start() override;
	void machine_reset() override;

	required_device<palette_device> m_palette;
	void mbee128_io(address_map &map);
	void mbee128p_io(address_map &map);
	void mbee256_io(address_map &map);
	void mbee256_mem(address_map &map);
	void mbee56_io(address_map &map);
	void mbee56_mem(address_map &map);
	void mbee_io(address_map &map);
	void mbee_mem(address_map &map);
	void mbeeic_io(address_map &map);
	void mbeeic_mem(address_map &map);
	void mbeeppc_io(address_map &map);
	void mbeeppc_mem(address_map &map);
	void mbeett_io(address_map &map);
	void mbeett_mem(address_map &map);

	u8 m_features = 0;
	u16 m_size = 0;
	u32 m_ramsize = 0;
	bool m_b7_rtc = false;
	bool m_b7_vs = false;
	bool m_b2 = false;
	u8 m_framecnt = 0;
	u8 m_08 = 0;
	u8 m_09 = 0;
	u8 m_0a = 0;
	u8 m_0b = 0;
	u8 m_1c = 0;
	u8 m_newkb_was_pressed[15] = { };
	u8 m_newkb_q[20] = { };
	u8 m_newkb_q_pos = 0;
	u8 m_sy6545_reg[32] = { };
	u8 m_sy6545_ind = 0;
	u8 m_fdc_rq = 0;
	u8 m_bank_array[33] = { };
	bool m_pak_extended[10] = { };
	std::unique_ptr<u8[]> m_dummy; // black hole for writes to rom
	std::unique_ptr<u8[]> m_ram;   // main banked-switch ram, 128/256/pp
	std::unique_ptr<u8[]> m_vram;  // video ram, all models
	std::unique_ptr<u8[]> m_pram;  // pcg ram, all models
	std::unique_ptr<u8[]> m_cram;  // colour ram, all except mbee
	std::unique_ptr<u8[]> m_aram;  // attribute ram, ppc/128/256/pp/tt
	void setup_banks(u8 data, bool first_time, u8 b_mask);
	void oldkb_scan(uint16_t param);
	void oldkb_matrix_r(uint16_t offs);
	required_device<z80_device> m_maincpu;
	required_device<z80pio_device> m_pio;
	required_device<cassette_image_device> m_cassette;
	required_device<speaker_sound_device> m_speaker;
	required_device<centronics_device> m_centronics;
	required_device<output_latch_device> m_cent_data_out;
	required_device<mc6845_device> m_crtc;
	optional_device<wd2793_device> m_fdc;
	optional_device<floppy_connector> m_floppy0;
	optional_device<floppy_connector> m_floppy1;
	optional_device<mc146818_device> m_rtc;
	optional_memory_region m_pakdef;
	optional_memory_region m_netdef;
	optional_region_ptr<u8> m_p_pakdef;
	optional_region_ptr<u8> m_p_netdef;
	optional_memory_bank m_basic;
	optional_ioport m_io_x7;
	optional_ioport_array<8> m_io_oldkb;
	optional_ioport_array<15> m_io_newkb;
	required_ioport m_io_config;
	required_device<screen_device> m_screen;
	optional_memory_bank_array<16> m_bankr;
	optional_memory_bank_array<16> m_bankw;
	optional_device_array<generic_slot_device, 20> m_pak;
};

#endif // MAME_INCLUDES_MBEE_H