diff options
author | 2014-08-29 20:01:29 +0000 | |
---|---|---|
committer | 2014-08-29 20:01:29 +0000 | |
commit | 57341a41c2ad9ca20e9078eeba9b9325520daaee (patch) | |
tree | 458dbe873970b556ef2ce6a7c8d7b37f0cb5219e /src/emu/cpu/rsp/rspfe.h | |
parent | dba1a3fdf126f8c878fe24828baeb2e63c63bd8a (diff) |
rsp.c: Modernised cpu core (nw)
Diffstat (limited to 'src/emu/cpu/rsp/rspfe.h')
-rw-r--r-- | src/emu/cpu/rsp/rspfe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/rsp/rspfe.h b/src/emu/cpu/rsp/rspfe.h index d0cd30be5b9..cd59f9ee6e8 100644 --- a/src/emu/cpu/rsp/rspfe.h +++ b/src/emu/cpu/rsp/rspfe.h @@ -36,7 +36,7 @@ class rsp_frontend : public drc_frontend { public: // construction/destruction - rsp_frontend(rsp_state &state, UINT32 window_start, UINT32 window_end, UINT32 max_sequence); + rsp_frontend(rsp_device &rsp, UINT32 window_start, UINT32 window_end, UINT32 max_sequence); protected: // required overrides @@ -50,7 +50,7 @@ private: bool describe_cop2(UINT32 op, opcode_desc &desc); // internal state - rsp_state &m_context; + rsp_device &m_rsp; }; |