summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/psx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/psx.cpp')
-rw-r--r--src/mame/drivers/psx.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mame/drivers/psx.cpp b/src/mame/drivers/psx.cpp
index 43957f067df..e8fc2045363 100644
--- a/src/mame/drivers/psx.cpp
+++ b/src/mame/drivers/psx.cpp
@@ -42,6 +42,11 @@ public:
{
}
+ void pse(machine_config &config);
+ void psu(machine_config &config);
+ void psj(machine_config &config);
+
+protected:
std::vector<uint8_t> m_exe_buffer;
int m_cd_param_p;
int m_cd_result_p;
@@ -66,9 +71,6 @@ public:
void cd_dma_write( uint32_t *p_n_psxram, uint32_t n_address, int32_t n_size );
required_device<psxcpu_device> m_maincpu;
required_device<ram_device> m_ram;
- void pse(machine_config &config);
- void psu(machine_config &config);
- void psj(machine_config &config);
void psx_map(address_map &map);
void subcpu_map(address_map &map);