diff options
Diffstat (limited to 'src/mame/misc/pse.cpp')
-rw-r--r-- | src/mame/misc/pse.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/misc/pse.cpp b/src/mame/misc/pse.cpp index c8d01c92a89..6a134e47d9f 100644 --- a/src/mame/misc/pse.cpp +++ b/src/mame/misc/pse.cpp @@ -32,7 +32,7 @@ // copied by Pong, not accurate for this driver! // start -#define MASTER_CLOCK 7159000 +#define MASTER_CLOCK XTAL::u(7159000) #define V_TOTAL (0x105+1) // 262 #define H_TOTAL (0x1C6+1) // 454 @@ -104,7 +104,7 @@ void pse_state::video_start() void pse_state::pse(machine_config &config) { /* basic machine hardware */ - NETLIST_CPU(config, m_maincpu, netlist::config::DEFAULT_CLOCK()).set_source(netlist_pse); + NETLIST_CPU(config, m_maincpu).set_source(netlist_pse); /* video hardware */ SCREEN(config, "screen", SCREEN_TYPE_RASTER); |