diff options
author | 2015-04-10 23:35:33 +0100 | |
---|---|---|
committer | 2015-04-11 00:52:26 +0100 | |
commit | 90f110f261b74f7cb49e537e573f34b6d6d453c1 (patch) | |
tree | 734d0e7870eab46688a49e98bf38ee0df6e94f54 /src/emu/cpu/apexc | |
parent | ac614bf9e4018fedd07df5e097d1b91b75654b15 (diff) |
Fix various typos and spelling mistakes
I'm purposefully leaving /src/emu/bus/cbmiec/c1541.c's kernal.bin
as it is, as this particular spelling mistake was originally made
by Robert Russell, therefore is canon. See
http://en.wikipedia.org/wiki/KERNAL for details.
I'm also leaving /src/emu/machine/nscsi_bus.c's RECIEVE as I don't
want to break anything, but it's worth someone looking into.
I renamed some variables in /src/mame/drivers/sfbonus.c,
/src/mame/video/tia.c and /src/mame/video/tia.h, so if anyone wants
to verify I didn't break anything, that would be nice.
Diffstat (limited to 'src/emu/cpu/apexc')
-rw-r--r-- | src/emu/cpu/apexc/apexcdsm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/apexc/apexcdsm.c b/src/emu/cpu/apexc/apexcdsm.c index e7ea37d08e8..276e0531e1e 100644 --- a/src/emu/cpu/apexc/apexcdsm.c +++ b/src/emu/cpu/apexc/apexcdsm.c @@ -86,7 +86,7 @@ CPU_DISASSEMBLE( apexc ) UINT32 instruction; /* 32-bit machine instruction */ int x, y, function, c6, vector; /* instruction fields */ int n; /* 'friendly', instruction-dependant interpretation of C6 */ - const instr_desc *the_desc; /* pointer to the revelant entry in the instructions array */ + const instr_desc *the_desc; /* pointer to the relevant entry in the instructions array */ char mnemonic[9]; /* storage for generated mnemonic */ /* read the instruction to disassemble */ @@ -99,7 +99,7 @@ CPU_DISASSEMBLE( apexc ) c6 = (instruction >> 1) & 0x3F; vector = instruction & 1; - /* get the revelant entry in instructions */ + /* get the relevant entry in instructions */ the_desc = & instructions[function >> 1]; /* generate mnemonic : append a 'v' to the basic mnemonic if it is a vector instruction */ |