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
|
/***********************************************************************************************************
Saturn cart emulation
***********************************************************************************************************/
#include "emu.h"
#include "machine/sat_dram.h"
//-------------------------------------------------
// constructor
//-------------------------------------------------
const device_type SATURN_DRAM_8MB = &device_creator<saturn_dram8mb_device>;
const device_type SATURN_DRAM_32MB = &device_creator<saturn_dram32mb_device>;
saturn_dram_device::saturn_dram_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, UINT32 size, const char *shortname, const char *source)
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
device_sat_cart_interface( mconfig, *this ),
m_size(size)
{
}
saturn_dram8mb_device::saturn_dram8mb_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: saturn_dram_device(mconfig, SATURN_DRAM_8MB, "Saturn Data RAM 8Mbit Cart", tag, owner, clock, 0x400000/4, "sat_dram_8mb", __FILE__)
{
m_cart_type = 0x5a;
}
saturn_dram32mb_device::saturn_dram32mb_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: saturn_dram_device(mconfig, SATURN_DRAM_32MB, "Saturn Data RAM 32Mbit Cart", tag, owner, clock, 0x800000/4, "sat_dram_32mb", __FILE__)
{
m_cart_type = 0x5c;
}
//-------------------------------------------------
// mapper specific start/reset
//-------------------------------------------------
void saturn_dram_device::device_start()
{
// TODO: only allocate the real amount of RAM
m_ext_dram0 = auto_alloc_array_clear(machine(), UINT32, 0x400000/4);
m_ext_dram1 = auto_alloc_array_clear(machine(), UINT32, 0x400000/4);
m_ext_dram0_size = 0x400000;
m_ext_dram1_size = 0x400000;
save_pointer(NAME(m_ext_dram0), 0x400000/4);
save_pointer(NAME(m_ext_dram1), 0x400000/4);
}
void saturn_dram_device::device_reset()
{
}
/*-------------------------------------------------
mapper specific handlers
-------------------------------------------------*/
// RAM: two DRAM chips are present in the cart
READ32_MEMBER(saturn_dram_device::read_ext_dram0)
{
if (offset < m_size/2)
return m_ext_dram0[offset];
else
{
mame_printf_error("DRAM0 read beyond its boundary! offs: %X\n", offset);
return 0xffffffff;
}
}
READ32_MEMBER(saturn_dram_device::read_ext_dram1)
{
if (offset < m_size/2)
return m_ext_dram1[offset];
else
{
mame_printf_error("DRAM1 read beyond its boundary! offs: %X\n", offset);
return 0xffffffff;
}
}
WRITE32_MEMBER(saturn_dram_device::write_ext_dram0)
{
if (offset < m_size/2)
COMBINE_DATA(&m_ext_dram0[offset]);
else
mame_printf_error("DRAM0 write beyond its boundary! offs: %X data: %X\n", offset, data);
}
WRITE32_MEMBER(saturn_dram_device::write_ext_dram1)
{
if (offset < m_size/2)
COMBINE_DATA(&m_ext_dram1[offset]);
else
mame_printf_error("DRAM1 write beyond its boundary! offs: %X data: %X\n", offset, data);
}
|