summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i960/i960.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/i960/i960.cpp')
-rw-r--r--src/devices/cpu/i960/i960.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/i960/i960.cpp b/src/devices/cpu/i960/i960.cpp
index 110a752dbdc..c4dfc964a51 100644
--- a/src/devices/cpu/i960/i960.cpp
+++ b/src/devices/cpu/i960/i960.cpp
@@ -1457,12 +1457,12 @@ void i960_cpu_device::execute_op(uint32_t opcode)
case 0x4: // dmovt
/*
- The dmovt instruction moves a 32-bit word from one register to another
- and tests the least-significant byte of the operand to determine if it is a
- valid ASCII-coded decimal digit (001100002 through 001110012,
- corresponding to the decimal digits 0 through 9). For valid digits, the
- condition code (CC) is set to 000; otherwise the condition code is set to
- 010.
+ The dmovt instruction moves a 32-bit word from one register to another
+ and tests the least-significant byte of the operand to determine if it is a
+ valid ASCII-coded decimal digit (001100002 through 001110012,
+ corresponding to the decimal digits 0 through 9). For valid digits, the
+ condition code (CC) is set to 000; otherwise the condition code is set to
+ 010.
*/
m_icount -= 7;
t1 = get_1_ri(opcode);