diff options
author | 2011-08-23 04:59:11 +0000 | |
---|---|---|
committer | 2011-08-23 04:59:11 +0000 | |
commit | b6cd64c7abb31c4224e72796bcaacf4c752fd717 (patch) | |
tree | dfd3bb356988f1e1ed2e006a05e2810301cefc11 /src/emu/cpu/tms32025 | |
parent | adacaf4eeee85405f89ea45e60bc670fe822e777 (diff) |
"English doesn't borrow from other languages. English follows other languages down dark alleys, knocks them over and goes through their pockets for loose grammar!"
Hand-checked the most popular English word misspellings and made the appropriate changes. Nearly all of the changes made were in commented areas. (no whatsnew)
Diffstat (limited to 'src/emu/cpu/tms32025')
-rw-r--r-- | src/emu/cpu/tms32025/dis32025.c | 2 | ||||
-rw-r--r-- | src/emu/cpu/tms32025/tms32025.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/tms32025/dis32025.c b/src/emu/cpu/tms32025/dis32025.c index 8a6dcfddf4f..44e458f3ede 100644 --- a/src/emu/cpu/tms32025/dis32025.c +++ b/src/emu/cpu/tms32025/dis32025.c @@ -36,7 +36,7 @@ int main(int argc,char *argv[]) printf(" <input-file> source file data must be MSB first\n"); printf(" <start-addr> starting address to disassemble from (decimal)\n"); printf(" <num-of-addr> number of addresses to disassemble (decimal)\n"); - printf(" Preceed values with 0x if HEX values preffered\n"); + printf(" Precede values with 0x if HEX values preffered\n"); exit(1); } diff --git a/src/emu/cpu/tms32025/tms32025.c b/src/emu/cpu/tms32025/tms32025.c index fcaf214431b..51e0ea0150d 100644 --- a/src/emu/cpu/tms32025/tms32025.c +++ b/src/emu/cpu/tms32025/tms32025.c @@ -620,7 +620,7 @@ static void addh(tms32025_state *cpustate) if ( ((INT16)(cpustate->oldacc.w.h) < 0) && ((INT16)(cpustate->ACC.w.h) >= 0) ) { SET1(cpustate, C_FLAG); } - /* Carry flag is not cleared, if no carry occured */ + /* Carry flag is not cleared, if no carry occurred */ } static void addk(tms32025_state *cpustate) { @@ -1537,7 +1537,7 @@ static void subh(tms32025_state *cpustate) if ( ((INT16)(cpustate->oldacc.w.h) >= 0) && ((INT16)(cpustate->ACC.w.h) < 0) ) { CLR1(cpustate, C_FLAG); } - /* Carry flag is not affected, if no borrow occured */ + /* Carry flag is not affected, if no borrow occurred */ } static void subk(tms32025_state *cpustate) { |