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
|
// license:BSD-3-Clause
// copyright-holders:hap
/******************************************************************************
Videopac+ 55/58/59/60 cartridge emulation
Bankswitched ROM via latch, either 16KB/2*8KB, or 4KB+8KB.
Used in:
- #55: Neutron Star
- #58: Air Battle
- #59: Helicopter Rescue
- #60: Trans American Rally
#55 and #58 also work on the G7000.
******************************************************************************/
#include "emu.h"
#include "rally.h"
DEFINE_DEVICE_TYPE(O2_ROM_RALLY, o2_rally_device, "o2_rally", "Odyssey 2 Videopac+ 60")
//-------------------------------------------------
// o2_rally_device - constructor
//-------------------------------------------------
o2_rally_device::o2_rally_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) :
device_t(mconfig, O2_ROM_RALLY, tag, owner, clock),
device_o2_cart_interface(mconfig, *this)
{ }
void o2_rally_device::device_start()
{
save_item(NAME(m_control));
save_item(NAME(m_bank));
}
void o2_rally_device::cart_init()
{
u32 size = m_rom_size;
if (size & (size - 1) || size < 0x800)
fatalerror("o2_rally_device: ROM size must be 2^x\n");
}
//-------------------------------------------------
// mapper specific handlers
//-------------------------------------------------
u8 o2_rally_device::read_rom04(offs_t offset)
{
// P10 enables latch output
u8 bank = (m_control & 1) ? ~0 : m_bank;
return m_rom[(offset + bank * 0x800) & (m_rom_size - 1)];
}
void o2_rally_device::io_write(offs_t offset, u8 data)
{
if (offset & 0x80 && ~m_control & 0x10)
m_bank = data;
}
|