summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/devices/bus/vme/vme_fccpu20.cpp2
-rw-r--r--src/devices/bus/vme/vme_hcpu30.cpp2
-rw-r--r--src/devices/machine/68561mpcc.cpp2
-rw-r--r--src/emu/layout/README.md2
-rw-r--r--src/mame/drivers/fccpu30.cpp2
-rw-r--r--src/mame/drivers/galaxian.cpp2
-rw-r--r--src/mame/drivers/hk68v10.cpp2
-rw-r--r--src/mame/drivers/mvme147.cpp2
-rw-r--r--src/mame/drivers/stuntair.cpp2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/vme/vme_fccpu20.cpp b/src/devices/bus/vme/vme_fccpu20.cpp
index 0e1ace4ff8d..7ddeee60680 100644
--- a/src/devices/bus/vme/vme_fccpu20.cpp
+++ b/src/devices/bus/vme/vme_fccpu20.cpp
@@ -491,7 +491,7 @@ WRITE32_MEMBER (vme_fccpu20_device::bootvect_w)
LOG("%s\n", FUNCNAME);
m_sysram[offset % sizeof(m_sysram)] &= ~mem_mask;
m_sysram[offset % sizeof(m_sysram)] |= (data & mem_mask);
- m_sysrom = &m_sysram[0]; // redirect all upcomming accesses to masking RAM until reset.
+ m_sysrom = &m_sysram[0]; // redirect all upcoming accesses to masking RAM until reset.
}
WRITE_LINE_MEMBER(vme_fccpu20_device::bim_irq_callback)
diff --git a/src/devices/bus/vme/vme_hcpu30.cpp b/src/devices/bus/vme/vme_hcpu30.cpp
index d94e5ed28cd..4e6e4d3aa8a 100644
--- a/src/devices/bus/vme/vme_hcpu30.cpp
+++ b/src/devices/bus/vme/vme_hcpu30.cpp
@@ -155,7 +155,7 @@ WRITE32_MEMBER(vme_hcpu30_card_device::bootvect_w)
LOG("%s\n", FUNCNAME);
m_sysram[offset % sizeof(m_sysram)] &= ~mem_mask;
m_sysram[offset % sizeof(m_sysram)] |= (data & mem_mask);
- m_sysrom = &m_sysram[0]; // redirect all upcomming accesses to masking RAM until reset.
+ m_sysrom = &m_sysram[0]; // redirect all upcoming accesses to masking RAM until reset.
}
vme_hcpu30_card_device::vme_hcpu30_card_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
diff --git a/src/devices/machine/68561mpcc.cpp b/src/devices/machine/68561mpcc.cpp
index 3f500827cdf..8b93885ffc2 100644
--- a/src/devices/machine/68561mpcc.cpp
+++ b/src/devices/machine/68561mpcc.cpp
@@ -587,7 +587,7 @@ void mpcc_device::tra_complete()
}
//-------------------------------------------------
-// rcv_callback - called when it is time to sample incomming data bit
+// rcv_callback - called when it is time to sample incoming data bit
//-------------------------------------------------
void mpcc_device::rcv_callback()
{
diff --git a/src/emu/layout/README.md b/src/emu/layout/README.md
index ce23c18751a..fac544bfe22 100644
--- a/src/emu/layout/README.md
+++ b/src/emu/layout/README.md
@@ -1,6 +1,6 @@
# **Layout** #
-Layouts files are definiton files to describe look and fell of emulated machines, and are product
+Layouts files are definition files to describe look and fell of emulated machines, and are product
of many different contributors.
Licensed under [CC0 1.0 Universal (CC0 1.0)](https://creativecommons.org/publicdomain/zero/1.0/)
diff --git a/src/mame/drivers/fccpu30.cpp b/src/mame/drivers/fccpu30.cpp
index 9ebc11d44f1..bbcf9280765 100644
--- a/src/mame/drivers/fccpu30.cpp
+++ b/src/mame/drivers/fccpu30.cpp
@@ -416,7 +416,7 @@ WRITE32_MEMBER (cpu30_state::bootvect_w){
LOG("%s\n", FUNCNAME);
m_sysram[offset % sizeof(m_sysram)] &= ~mem_mask;
m_sysram[offset % sizeof(m_sysram)] |= (data & mem_mask);
- m_sysrom = &m_sysram[0]; // redirect all upcomming accesses to masking RAM until reset.
+ m_sysrom = &m_sysram[0]; // redirect all upcoming accesses to masking RAM until reset.
}
/*
diff --git a/src/mame/drivers/galaxian.cpp b/src/mame/drivers/galaxian.cpp
index caae5457a0d..83ce804ee56 100644
--- a/src/mame/drivers/galaxian.cpp
+++ b/src/mame/drivers/galaxian.cpp
@@ -1961,7 +1961,7 @@ ADDRESS_MAP_END
/* changes from galaxian map:
galaxian sound removed
- $4800-$57ff: cointains video and object RAM (normally at $5000-$5fff)
+ $4800-$57ff: contains video and object RAM (normally at $5000-$5fff)
$5800-$5fff: AY-8910 access added
$6002-$6006: graphics banking controls replace coin lockout, coin counter, and lfo
$7002: coin counter (moved from $6003)
diff --git a/src/mame/drivers/hk68v10.cpp b/src/mame/drivers/hk68v10.cpp
index 53d7e11a3e7..064fee8040e 100644
--- a/src/mame/drivers/hk68v10.cpp
+++ b/src/mame/drivers/hk68v10.cpp
@@ -279,7 +279,7 @@ WRITE16_MEMBER (hk68v10_state::bootvect_w){
LOG (("%s offset %08x, mask %08x, data %04x\n", FUNCNAME, offset, mem_mask, data));
m_sysram[offset % sizeof(m_sysram)] &= ~mem_mask;
m_sysram[offset % sizeof(m_sysram)] |= (data & mem_mask);
- m_sysrom = &m_sysram[0]; // redirect all upcomming accesses to masking RAM until reset.
+ m_sysrom = &m_sysram[0]; // redirect all upcoming accesses to masking RAM until reset.
}
#if 0
diff --git a/src/mame/drivers/mvme147.cpp b/src/mame/drivers/mvme147.cpp
index 2bdebc079b1..8421f2a169b 100644
--- a/src/mame/drivers/mvme147.cpp
+++ b/src/mame/drivers/mvme147.cpp
@@ -289,7 +289,7 @@ READ32_MEMBER (mvme147_state::bootvect_r){
WRITE32_MEMBER (mvme147_state::bootvect_w){
m_sysram[offset % sizeof(m_sysram)] &= ~mem_mask;
m_sysram[offset % sizeof(m_sysram)] |= (data & mem_mask);
- m_sysrom = &m_sysram[0]; // redirect all upcomming accesses to masking RAM until reset.
+ m_sysrom = &m_sysram[0]; // redirect all upcoming accesses to masking RAM until reset.
}
/****
diff --git a/src/mame/drivers/stuntair.cpp b/src/mame/drivers/stuntair.cpp
index 7d8f4f9b75d..b7b3b9a0b68 100644
--- a/src/mame/drivers/stuntair.cpp
+++ b/src/mame/drivers/stuntair.cpp
@@ -27,7 +27,7 @@ Bg 1,5kb (2114 x3)
Sprites 1kb (2148 x2)
color 320byte (27ls00 x10)
-Rom definiton:
+Rom definition:
-top pcb-
stuntair.a0,a1,a3,a4,a6 main program
stuntair.e14 sound program