summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/isbc.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-10-10 18:02:58 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2019-10-10 18:02:58 +0200
commit52d873062c8025915d55b15547edc66de0f17492 (patch)
tree36e8fc32838356c2399441d49b412402de523beb /src/mame/drivers/isbc.cpp
parentcc9b9974375947a1769689e74594f2b5d1aa56b9 (diff)
(nw) removed every remaining AM_ macro I could find in comments, but one in emu\memarray.h cause I didn't want to cause a full recompile for this (nw)
Diffstat (limited to 'src/mame/drivers/isbc.cpp')
-rw-r--r--src/mame/drivers/isbc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/isbc.cpp b/src/mame/drivers/isbc.cpp
index 05deca4a0b2..390f2f55ca7 100644
--- a/src/mame/drivers/isbc.cpp
+++ b/src/mame/drivers/isbc.cpp
@@ -206,7 +206,7 @@ void isbc_state::isbc2861_mem(address_map &map)
map.unmap_value_high();
map(0x00000, 0xdffff).ram();
map(0xe0000, 0xfffff).rw(FUNC(isbc_state::bioslo_r), FUNC(isbc_state::bioslo_w)).share("biosram");
-// AM_RANGE(0x100000, 0x1fffff) AM_RAM // FIXME: XENIX doesn't like this, IRMX is okay with it
+// map(0x100000, 0x1fffff).ram(); // FIXME: XENIX doesn't like this, IRMX is okay with it
map(0xff0000, 0xffffff).rom().region("user1", 0);
}