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.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mame/drivers/psx.cpp b/src/mame/drivers/psx.cpp
index 908c21e1426..1d4260396d8 100644
--- a/src/mame/drivers/psx.cpp
+++ b/src/mame/drivers/psx.cpp
@@ -23,6 +23,7 @@
#include "video/psx.h"
#include "debugger.h"
+#include "screen.h"
#include "softlist.h"
#include "speaker.h"
@@ -536,6 +537,9 @@ MACHINE_CONFIG_START(psx1_state::psj)
/* video hardware */
MCFG_PSXGPU_ADD( "maincpu", "gpu", CXD8561Q, 0x100000, XTAL(53'693'175) )
+ MCFG_VIDEO_SET_SCREEN("screen")
+
+ SCREEN(config, "screen", SCREEN_TYPE_RASTER);
/* sound hardware */
SPEAKER(config, "lspeaker").front_left();
@@ -587,6 +591,9 @@ MACHINE_CONFIG_START(psx1_state::pse)
/* video hardware */
/* TODO: visible area and refresh rate */
MCFG_PSXGPU_ADD( "maincpu", "gpu", CXD8561Q, 0x100000, XTAL(53'693'175) )
+ MCFG_VIDEO_SET_SCREEN("screen")
+
+ SCREEN(config, "screen", SCREEN_TYPE_RASTER);
/* sound hardware */
SPEAKER(config, "lspeaker").front_left();