summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mips/mips3fe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mips/mips3fe.cpp')
-rw-r--r--src/devices/cpu/mips/mips3fe.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/cpu/mips/mips3fe.cpp b/src/devices/cpu/mips/mips3fe.cpp
index 42055c39e24..a530d026c75 100644
--- a/src/devices/cpu/mips/mips3fe.cpp
+++ b/src/devices/cpu/mips/mips3fe.cpp
@@ -21,7 +21,7 @@
// mips3_frontend - constructor
//-------------------------------------------------
-mips3_frontend::mips3_frontend(mips3_device *mips3, UINT32 window_start, UINT32 window_end, UINT32 max_sequence)
+mips3_frontend::mips3_frontend(mips3_device *mips3, uint32_t window_start, uint32_t window_end, uint32_t max_sequence)
: drc_frontend(*mips3, window_start, window_end, max_sequence),
m_mips3(mips3)
{
@@ -35,7 +35,7 @@ mips3_frontend::mips3_frontend(mips3_device *mips3, UINT32 window_start, UINT32
bool mips3_frontend::describe(opcode_desc &desc, const opcode_desc *prev)
{
- UINT32 op, opswitch;
+ uint32_t op, opswitch;
// compute the physical PC
assert((desc.physpc & 3) == 0);
@@ -230,7 +230,7 @@ bool mips3_frontend::describe(opcode_desc &desc, const opcode_desc *prev)
// single instruction in the 'special' group
//-------------------------------------------------
-bool mips3_frontend::describe_special(UINT32 op, opcode_desc &desc)
+bool mips3_frontend::describe_special(uint32_t op, opcode_desc &desc)
{
switch (op & 63)
{
@@ -381,7 +381,7 @@ bool mips3_frontend::describe_special(UINT32 op, opcode_desc &desc)
// single instruction in the 'regimm' group
//-------------------------------------------------
-bool mips3_frontend::describe_regimm(UINT32 op, opcode_desc &desc)
+bool mips3_frontend::describe_regimm(uint32_t op, opcode_desc &desc)
{
switch (RTREG)
{
@@ -438,7 +438,7 @@ bool mips3_frontend::describe_regimm(UINT32 op, opcode_desc &desc)
// instruction in the IDT-specific group
//-------------------------------------------------
-bool mips3_frontend::describe_idt(UINT32 op, opcode_desc &desc)
+bool mips3_frontend::describe_idt(uint32_t op, opcode_desc &desc)
{
// only on the R4650
if (m_mips3->m_flavor != mips3_device::MIPS3_TYPE_R4650)
@@ -469,7 +469,7 @@ bool mips3_frontend::describe_idt(UINT32 op, opcode_desc &desc)
// single instruction in the COP0 group
//-------------------------------------------------
-bool mips3_frontend::describe_cop0(UINT32 op, opcode_desc &desc)
+bool mips3_frontend::describe_cop0(uint32_t op, opcode_desc &desc)
{
// any COP0 instruction can potentially cause an exception
desc.flags |= OPFLAG_CAN_CAUSE_EXCEPTION;
@@ -544,7 +544,7 @@ bool mips3_frontend::describe_cop0(UINT32 op, opcode_desc &desc)
// single instruction in the COP1 group
//-------------------------------------------------
-bool mips3_frontend::describe_cop1(UINT32 op, opcode_desc &desc)
+bool mips3_frontend::describe_cop1(uint32_t op, opcode_desc &desc)
{
// any COP1 instruction can potentially cause an exception
// desc.flags |= OPFLAG_CAN_CAUSE_EXCEPTION;
@@ -662,7 +662,7 @@ bool mips3_frontend::describe_cop1(UINT32 op, opcode_desc &desc)
// single instruction in the COP1X group
//-------------------------------------------------
-bool mips3_frontend::describe_cop1x(UINT32 op, opcode_desc &desc)
+bool mips3_frontend::describe_cop1x(uint32_t op, opcode_desc &desc)
{
// any COP1 instruction can potentially cause an exception
// desc.flags |= OPFLAG_CAN_CAUSE_EXCEPTION;
@@ -705,7 +705,7 @@ bool mips3_frontend::describe_cop1x(UINT32 op, opcode_desc &desc)
// single instruction in the COP2 group
//-------------------------------------------------
-bool mips3_frontend::describe_cop2(UINT32 op, opcode_desc &desc)
+bool mips3_frontend::describe_cop2(uint32_t op, opcode_desc &desc)
{
// any COP2 instruction can potentially cause an exception
desc.flags |= OPFLAG_CAN_CAUSE_EXCEPTION;