summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rsp/rspfe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/rsp/rspfe.h')
-rw-r--r--src/devices/cpu/rsp/rspfe.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/rsp/rspfe.h b/src/devices/cpu/rsp/rspfe.h
index 52f5a64243e..d292d9f4225 100644
--- a/src/devices/cpu/rsp/rspfe.h
+++ b/src/devices/cpu/rsp/rspfe.h
@@ -34,7 +34,7 @@ class rsp_frontend : public drc_frontend
{
public:
// construction/destruction
- rsp_frontend(rsp_device &rsp, UINT32 window_start, UINT32 window_end, UINT32 max_sequence);
+ rsp_frontend(rsp_device &rsp, uint32_t window_start, uint32_t window_end, uint32_t max_sequence);
protected:
// required overrides
@@ -42,10 +42,10 @@ protected:
private:
// internal helpers
- bool describe_special(UINT32 op, opcode_desc &desc);
- bool describe_regimm(UINT32 op, opcode_desc &desc);
- bool describe_cop0(UINT32 op, opcode_desc &desc);
- bool describe_cop2(UINT32 op, opcode_desc &desc);
+ bool describe_special(uint32_t op, opcode_desc &desc);
+ bool describe_regimm(uint32_t op, opcode_desc &desc);
+ bool describe_cop0(uint32_t op, opcode_desc &desc);
+ bool describe_cop2(uint32_t op, opcode_desc &desc);
// internal state
rsp_device &m_rsp;