summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/addrmap.cpp
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2016-04-12 08:48:35 -0400
committer R. Belmont <rb6502@users.noreply.github.com>2016-04-12 08:48:35 -0400
commit3ed3b7e7fcc4f828106149272e3c3ee9fb0ccb65 (patch)
tree1deef1318e78ec3d28745a77fef2faec2712ae20 /src/emu/addrmap.cpp
parent0d0ecae0a4e531452dfd20ee75ebbedaaad7a32d (diff)
parent3d5c53d11e99d109c4e6351aeade2fb7e857e71b (diff)
Merge pull request #776 from jmallach/typos
Fix typos throughout the codebase
Diffstat (limited to 'src/emu/addrmap.cpp')
-rw-r--r--src/emu/addrmap.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/addrmap.cpp b/src/emu/addrmap.cpp
index b377fe73231..ce6f0290d08 100644
--- a/src/emu/addrmap.cpp
+++ b/src/emu/addrmap.cpp
@@ -728,7 +728,7 @@ void address_map::map_validity_check(validity_checker &valid, const device_t &de
case 64: devtag = entry.m_rproto64.device_name(); break;
}
if (entry.m_devbase.subdevice(devtag) == nullptr)
- osd_printf_error("%s space memory map entry reads from nonexistant device '%s'\n", spaceconfig.m_name,
+ osd_printf_error("%s space memory map entry reads from nonexistent device '%s'\n", spaceconfig.m_name,
devtag != nullptr ? devtag : "<unspecified>");
}
if (entry.m_write.m_type == AMH_DEVICE_DELEGATE)
@@ -743,7 +743,7 @@ void address_map::map_validity_check(validity_checker &valid, const device_t &de
case 64: devtag = entry.m_wproto64.device_name(); break;
}
if (entry.m_devbase.subdevice(devtag) == nullptr)
- osd_printf_error("%s space memory map entry writes to nonexistant device '%s'\n", spaceconfig.m_name,
+ osd_printf_error("%s space memory map entry writes to nonexistent device '%s'\n", spaceconfig.m_name,
devtag != nullptr ? devtag : "<unspecified>");
}
if (entry.m_setoffsethd.m_type == AMH_DEVICE_DELEGATE)
@@ -751,14 +751,14 @@ void address_map::map_validity_check(validity_checker &valid, const device_t &de
// extract the device tag from the proto-delegate
const char *devtag = entry.m_soproto.device_name();
if (entry.m_devbase.subdevice(devtag) == nullptr)
- osd_printf_error("%s space memory map entry references nonexistant device '%s'\n", spaceconfig.m_name,
+ osd_printf_error("%s space memory map entry references nonexistent device '%s'\n", spaceconfig.m_name,
devtag != nullptr ? devtag : "<unspecified>");
}
// make sure ports exist
// if ((entry.m_read.m_type == AMH_PORT && entry.m_read.m_tag != NULL && portlist.find(entry.m_read.m_tag) == NULL) ||
// (entry.m_write.m_type == AMH_PORT && entry.m_write.m_tag != NULL && portlist.find(entry.m_write.m_tag) == NULL))
-// osd_printf_error("%s space memory map entry references nonexistant port tag '%s'\n", spaceconfig.m_name, entry.m_read.m_tag);
+// osd_printf_error("%s space memory map entry references nonexistent port tag '%s'\n", spaceconfig.m_name, entry.m_read.m_tag);
// validate bank and share tags
if (entry.m_read.m_type == AMH_BANK)