Skip to content

Commit 1b16df1

Browse files
committed
triplec: Mirror SRAM in X space
1 parent 124d969 commit 1b16df1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mame/skeleton/tc_manhattan.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,13 @@ u32 tc_manhattan_state::eprom_r(offs_t offset)
4242
void tc_manhattan_state::p_map(address_map &map)
4343
{
4444
map(0x000c00, 0x0013ff).ram(); // FIXME: actually a configurable extension of internal RAM
45-
map(0x020000, 0x03ffff).ram(); // 3x KM68V1002BJ-10
45+
map(0x020000, 0x03ffff).ram().share("sram"); // 3x KM68V1002BJ-10
4646
map(0xd00000, 0xd3ffff).r(FUNC(tc_manhattan_state::eprom_r));
4747
}
4848

4949
void tc_manhattan_state::x_map(address_map &map)
5050
{
51+
map(0x020000, 0x03ffff).ram().share("sram");
5152
map(0x040000, 0x07ffff).r(FUNC(tc_manhattan_state::eprom_r));
5253
}
5354

0 commit comments

Comments
 (0)