Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/mame/webtv/webtv1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ void webtv1_state::webtv1_map(address_map &map)
map(0x04005000, 0x04005fff).m(m_spotasic, FUNC(spot_asic_device::mem_unit_map));

// ROM
map(0x1f000000, 0x1f3fffff).rw(FUNC(bank0_flash_r), FUNC(bank0_flash_w)).share("bank0"); // Flash ROM, 4MB (retail configuration 2MB)
map(0x1f000000, 0x1f3fffff).rw(FUNC(webtv1_state::bank0_flash_r), FUNC(webtv1_state::bank0_flash_w)).share("bank0"); // Flash ROM, 4MB (retail configuration 2MB)
map(0x1f800000, 0x1fffffff).rom().region("bank1", 0); // Mask ROM
}

Expand Down Expand Up @@ -185,4 +185,4 @@ ROM_END

// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
CONS( 1996, wtv1sony, 0, 0, webtv1_sony, 0, webtv1_state, empty_init, "Sony", "INT-W100 WebTV Internet Terminal", MACHINE_NOT_WORKING + MACHINE_NO_SOUND )
CONS( 1996, wtv1phil, 0, 0, webtv1_philips, 0, webtv1_state, empty_init, "Philips-Magnavox", "MAT960 WebTV Internet Terminal", MACHINE_NOT_WORKING + MACHINE_NO_SOUND )
CONS( 1996, wtv1phil, 0, 0, webtv1_philips, 0, webtv1_state, empty_init, "Philips-Magnavox", "MAT960 WebTV Internet Terminal", MACHINE_NOT_WORKING + MACHINE_NO_SOUND )