From 51e7855d746e534c8d690534a6bd1dee9c44d28e Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 5 Oct 2022 21:58:13 -0400 Subject: [PATCH] winclub.cpp: Further narrow down CPU core type --- src/mame/sega/winclub.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/sega/winclub.cpp b/src/mame/sega/winclub.cpp index bd1cd8dbcd6..b3ef1cafe2f 100644 --- a/src/mame/sega/winclub.cpp +++ b/src/mame/sega/winclub.cpp @@ -12,7 +12,7 @@ https://www.youtube.com/watch?v=k3REoIx7m-I Hardware manufactured by Sammy main PCB (Sammy AM3AEE-02): -2x big Sammy customs with no other markings (1 believed to be an SH* core) +2x big Sammy customs with no other markings (1 believed to be an SH-4 core) 1x L14.318 XTAL 1x CY37256VP150 CPLD 2x 5212325FBPB60 128Mb SDRAMs @@ -88,7 +88,7 @@ INPUT_PORTS_END void winclub_state::winclub(machine_config &config) { // basic machine hardware - sh3_device &maincpu(SH3LE(config, "maincpu", 14'318'000)); // TODO: SH* based custom, unknown type and clock + sh4_device &maincpu(SH4LE(config, "maincpu", 14'318'000)); // TODO: SH-4 based custom, unknown type and clock maincpu.set_addrmap(AS_PROGRAM, &winclub_state::prg_map); // maincpu.set_vblank_int("screen", FUNC(winclub_state::irq2_line_hold));