diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/cpu/mips/mips3fe.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/cpu/mips/mips3fe.cpp')
-rw-r--r-- | src/devices/cpu/mips/mips3fe.cpp | 18 |
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; |