diff options
Diffstat (limited to 'sim/arm')
-rw-r--r-- | sim/arm/armcopro.c | 6 | ||||
-rw-r--r-- | sim/arm/armemu.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sim/arm/armcopro.c b/sim/arm/armcopro.c index 5cd33fb..70cebcd 100644 --- a/sim/arm/armcopro.c +++ b/sim/arm/armcopro.c @@ -134,7 +134,7 @@ check_cp15_access (ARMul_State * state, return ARMul_CANT; break; case 7: - /* Permissable combinations: + /* Permissible combinations: Opcode_2 CRm 0 5 0 6 @@ -157,7 +157,7 @@ check_cp15_access (ARMul_State * state, break; case 8: - /* Permissable combinations: + /* Permissible combinations: Opcode_2 CRm 0 5 0 6 @@ -232,7 +232,7 @@ write_cp15_reg (ARMul_State * state, /* Writes are not allowed. */ return; - case 1: /* Auxillary Control. */ + case 1: /* Auxiliary Control. */ /* Only BITS (5, 4) and BITS (1, 0) can be written. */ value &= 0x33; break; diff --git a/sim/arm/armemu.c b/sim/arm/armemu.c index cafaabb..2958977 100644 --- a/sim/arm/armemu.c +++ b/sim/arm/armemu.c @@ -6033,7 +6033,7 @@ Multiply64 (ARMul_State * state, ARMword instr, int msigned, int scc) hi = (((Rs >> 16) & 0xFFFF) * ((Rm >> 16) & 0xFFFF)); /* We now need to add all of these results together, taking - care to propogate the carries from the additions. */ + care to propagate the carries from the additions. */ RdLo = Add32 (lo, (mid1 << 16), &carry); RdHi = carry; RdLo = Add32 (RdLo, (mid2 << 16), &carry); |