summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/4enlinea.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/4enlinea.cpp')
-rw-r--r--src/mame/drivers/4enlinea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/4enlinea.cpp b/src/mame/drivers/4enlinea.cpp
index 050d44bf2e7..a07d92002b1 100644
--- a/src/mame/drivers/4enlinea.cpp
+++ b/src/mame/drivers/4enlinea.cpp
@@ -379,7 +379,7 @@ READ8_MEMBER(_4enlinea_state::serial_r)
void _4enlinea_state::main_map(address_map &map)
{
map(0x0000, 0x7fff).rom();
-// AM_RANGE(0x8000, 0xbfff) AM_RAM // CGA VRAM
+// map(0x8000, 0xbfff).ram(); // CGA VRAM
map(0xc000, 0xdfff).ram();
map(0xe000, 0xe001).r(FUNC(_4enlinea_state::serial_r));
@@ -389,7 +389,7 @@ void _4enlinea_state::main_portmap(address_map &map)
{
map.global_mask(0x3ff);
-// AM_RANGE(0x3d4, 0x3df) CGA regs
+// map(0x3d4, 0x3df) CGA regs
map(0x3bf, 0x3bf).nopw(); // CGA mode control, TODO
}