summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu')
-rw-r--r--src/devices/cpu/m68000/m68kops.c2
-rw-r--r--src/devices/cpu/mips/mips3.c6
-rw-r--r--src/devices/cpu/rsp/rsp_dasm.c8
-rw-r--r--src/devices/cpu/t11/t11.c2
4 files changed, 8 insertions, 10 deletions
diff --git a/src/devices/cpu/m68000/m68kops.c b/src/devices/cpu/m68000/m68kops.c
index 245f5fb3b0a..b0eeec4fad3 100644
--- a/src/devices/cpu/m68000/m68kops.c
+++ b/src/devices/cpu/m68000/m68kops.c
@@ -34872,5 +34872,3 @@ void m68ki_build_opcode_table(void)
/* ======================================================================== */
/* ============================== END OF FILE ============================= */
/* ======================================================================== */
-
-
diff --git a/src/devices/cpu/mips/mips3.c b/src/devices/cpu/mips/mips3.c
index ffed0db99c2..7ee13632695 100644
--- a/src/devices/cpu/mips/mips3.c
+++ b/src/devices/cpu/mips/mips3.c
@@ -2845,7 +2845,7 @@ void mips3_device::execute_run()
case 0x2e: /* SWR */ (this->*m_swr)(op); break;
case 0x2f: /* CACHE */ /* effective no-op */ break;
case 0x30: /* LL */ if (RWORD(SIMMVAL+RSVAL32, &temp) && RTREG) RTVAL64 = (UINT32)temp; m_ll_value = RTVAL32; break;
- case 0x31: /* LWC1 */
+ case 0x31: /* LWC1 */
if (!(SR & SR_COP1))
{
m_badcop_value = 1;
@@ -2855,7 +2855,7 @@ void mips3_device::execute_run()
case 0x32: /* LWC2 */ if (RWORD(SIMMVAL+RSVAL32, &temp)) set_cop2_reg(RTREG, temp); break;
case 0x33: /* PREF */ /* effective no-op */ break;
case 0x34: /* LLD */ if (RDOUBLE(SIMMVAL+RSVAL32, &temp64) && RTREG) RTVAL64 = temp64; m_lld_value = temp64; break;
- case 0x35: /* LDC1 */
+ case 0x35: /* LDC1 */
if (!(SR & SR_COP1))
{
m_badcop_value = 1;
@@ -2877,7 +2877,7 @@ void mips3_device::execute_run()
}
}
break;
- case 0x39: /* SWC1 */
+ case 0x39: /* SWC1 */
if (!(SR & SR_COP1))
{
m_badcop_value = 1;
diff --git a/src/devices/cpu/rsp/rsp_dasm.c b/src/devices/cpu/rsp/rsp_dasm.c
index 70e6d7e47e8..bf56b240652 100644
--- a/src/devices/cpu/rsp/rsp_dasm.c
+++ b/src/devices/cpu/rsp/rsp_dasm.c
@@ -10,10 +10,10 @@
/*static const char *const reg[32] =
{
- "0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
- "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
- "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
- "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"
+ "0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
+ "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
+ "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
+ "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"
};
*/
diff --git a/src/devices/cpu/t11/t11.c b/src/devices/cpu/t11/t11.c
index 97f53e74b34..4a012ec0505 100644
--- a/src/devices/cpu/t11/t11.c
+++ b/src/devices/cpu/t11/t11.c
@@ -365,7 +365,7 @@ void t11_device::device_reset()
void k1801vm2_device::device_reset()
{
t11_device::device_reset();
-
+
PC = RWORD(c_initial_mode);
PSW = RWORD(c_initial_mode+2);
}