summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/v60/op5.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/v60/op5.hxx')
-rw-r--r--src/devices/cpu/v60/op5.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/cpu/v60/op5.hxx b/src/devices/cpu/v60/op5.hxx
index be6084eb6e1..a70a1809ce0 100644
--- a/src/devices/cpu/v60/op5.hxx
+++ b/src/devices/cpu/v60/op5.hxx
@@ -4,10 +4,10 @@
* HALT: must add log
*/
-UINT32 v60_device::opBRK()
+uint32_t v60_device::opBRK()
{
/*
- UINT32 oldPSW = v60_update_psw_for_exception(0, 0);
+ uint32_t oldPSW = v60_update_psw_for_exception(0, 0);
SP -=4;
m_program->write_dword_unaligned(SP, EXCEPTION_CODE_AND_SIZE(0x0d00, 4));
@@ -22,9 +22,9 @@ UINT32 v60_device::opBRK()
return 1;
}
-UINT32 v60_device::opBRKV()
+uint32_t v60_device::opBRKV()
{
- UINT32 oldPSW = v60_update_psw_for_exception(0, 0);
+ uint32_t oldPSW = v60_update_psw_for_exception(0, 0);
SP -=4;
m_program->write_dword_unaligned(SP, PC);
@@ -39,14 +39,14 @@ UINT32 v60_device::opBRKV()
return 0;
}
-UINT32 v60_device::opCLRTLBA()
+uint32_t v60_device::opCLRTLBA()
{
// @@@ TLB not yet supported
logerror("Skipping CLRTLBA opcode! PC=%x\n", PC);
return 1;
}
-UINT32 v60_device::opDISPOSE()
+uint32_t v60_device::opDISPOSE()
{
SP = FP;
FP = m_program->read_dword_unaligned(SP);
@@ -55,19 +55,19 @@ UINT32 v60_device::opDISPOSE()
return 1;
}
-UINT32 v60_device::opHALT()
+uint32_t v60_device::opHALT()
{
// @@@ It should wait for an interrupt to occur
//logerror("HALT found: skipping");
return 1;
}
-UINT32 v60_device::opNOP() /* TRUSTED */
+uint32_t v60_device::opNOP() /* TRUSTED */
{
return 1;
}
-UINT32 v60_device::opRSR()
+uint32_t v60_device::opRSR()
{
PC = m_program->read_dword_unaligned(SP);
SP +=4;
@@ -75,7 +75,7 @@ UINT32 v60_device::opRSR()
return 0;
}
-UINT32 v60_device::opTRAPFL()
+uint32_t v60_device::opTRAPFL()
{
if ((TKCW & 0x1F0) & ((v60ReadPSW() & 0x1F00) >> 4))
{