summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/saturn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/saturn.c')
-rw-r--r--src/mess/drivers/saturn.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mess/drivers/saturn.c b/src/mess/drivers/saturn.c
index 31b6f1e6961..b04a63bff79 100644
--- a/src/mess/drivers/saturn.c
+++ b/src/mess/drivers/saturn.c
@@ -38,6 +38,7 @@ test1f diagnostic hacks:
#include "cpu/m68000/m68000.h"
#include "machine/eepromser.h"
#include "cpu/sh2/sh2.h"
+#include "cpu/scudsp/scudsp.h"
#include "machine/scudsp.h"
#include "sound/scsp.h"
#include "sound/cdda.h"
@@ -183,6 +184,16 @@ static ADDRESS_MAP_START( sound_mem, AS_PROGRAM, 16, sat_console_state )
AM_RANGE(0x100000, 0x100fff) AM_DEVREADWRITE_LEGACY("scsp", scsp_r, scsp_w)
ADDRESS_MAP_END
+#if 0
+static ADDRESS_MAP_START( scudsp_mem, AS_PROGRAM, 32, sat_console_state )
+ AM_RANGE(0x00, 0xff) AM_RAM
+ADDRESS_MAP_END
+
+static ADDRESS_MAP_START( scudsp_data, AS_DATA, 32, sat_console_state )
+ AM_RANGE(0x00, 0xff) AM_RAM
+ADDRESS_MAP_END
+#endif
+
/* keyboard code */
/* TODO: needs a proper keycode table */
@@ -743,6 +754,14 @@ static MACHINE_CONFIG_START( saturn, sat_console_state )
MCFG_CPU_ADD("audiocpu", M68000, 11289600) //256 x 44100 Hz = 11.2896 MHz
MCFG_CPU_PROGRAM_MAP(sound_mem)
+#if 0
+ MCFG_CPU_ADD("scudsp", SCUDSP, MASTER_CLOCK_352/4) // 14 MHz
+ MCFG_CPU_PROGRAM_MAP(scudsp_mem)
+ MCFG_CPU_DATA_MAP(scudsp_data)
+// MCFG_CPU_CONFIG(scudsp_config)
+#endif
+
+
// SH-1
// SMPC MCU, running at 4 MHz (+ custom RTC device that runs at 32.768 KHz)