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
|
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol, Fabio Priuli, hap
/******************************************************************************
Standard cartridges emulation, optionally bankswitched up to 8KB.
******************************************************************************/
#include "emu.h"
#include "rom.h"
DEFINE_DEVICE_TYPE(O2_ROM_STD, o2_rom_device, "o2_rom", "Odyssey 2 Standard Cartridge")
//-------------------------------------------------
// o2_rom_device - constructor
//-------------------------------------------------
o2_rom_device::o2_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
device_t(mconfig, O2_ROM_STD, tag, owner, clock),
device_o2_cart_interface(mconfig, *this)
{ }
void o2_rom_device::device_start()
{
save_item(NAME(m_bank));
}
void o2_rom_device::cart_init()
{
m_cart_mask = (1 << (31 - count_leading_zeros_32(m_rom_size))) - 1;
}
//-------------------------------------------------
// mapper specific handlers
//-------------------------------------------------
u8 o2_rom_device::read_rom04(offs_t offset)
{
offset = (offset + m_bank * 0x800) & m_cart_mask;
return (offset < m_rom_size) ? m_rom[offset] : 0xff;
}
|