We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 124d969 commit 1b16df1Copy full SHA for 1b16df1
src/mame/skeleton/tc_manhattan.cpp
@@ -42,12 +42,13 @@ u32 tc_manhattan_state::eprom_r(offs_t offset)
42
void tc_manhattan_state::p_map(address_map &map)
43
{
44
map(0x000c00, 0x0013ff).ram(); // FIXME: actually a configurable extension of internal RAM
45
- map(0x020000, 0x03ffff).ram(); // 3x KM68V1002BJ-10
+ map(0x020000, 0x03ffff).ram().share("sram"); // 3x KM68V1002BJ-10
46
map(0xd00000, 0xd3ffff).r(FUNC(tc_manhattan_state::eprom_r));
47
}
48
49
void tc_manhattan_state::x_map(address_map &map)
50
51
+ map(0x020000, 0x03ffff).ram().share("sram");
52
map(0x040000, 0x07ffff).r(FUNC(tc_manhattan_state::eprom_r));
53
54
0 commit comments