summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/spcforce.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/spcforce.h')
-rw-r--r--src/mame/includes/spcforce.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/includes/spcforce.h b/src/mame/includes/spcforce.h
index 0ec5c8316e0..c53add56e7a 100644
--- a/src/mame/includes/spcforce.h
+++ b/src/mame/includes/spcforce.h
@@ -5,6 +5,7 @@
#pragma once
+#include "cpu/mcs48/mcs48.h"
#include "machine/74259.h"
#include "sound/sn76496.h"
#include "emupal.h"
@@ -35,9 +36,9 @@ protected:
virtual void machine_start() override;
private:
- DECLARE_WRITE8_MEMBER(SN76496_latch_w);
- DECLARE_READ8_MEMBER(SN76496_select_r);
- DECLARE_WRITE8_MEMBER(SN76496_select_w);
+ DECLARE_WRITE8_MEMBER(sn76496_latch_w);
+ DECLARE_READ8_MEMBER(sn76496_select_r);
+ DECLARE_WRITE8_MEMBER(sn76496_select_w);
DECLARE_WRITE_LINE_MEMBER(write_sn1_ready);
DECLARE_WRITE_LINE_MEMBER(write_sn2_ready);
DECLARE_WRITE_LINE_MEMBER(write_sn3_ready);
@@ -59,7 +60,7 @@ private:
required_device<cpu_device> m_maincpu;
required_device<ls259_device> m_mainlatch;
- required_device<cpu_device> m_audiocpu;
+ required_device<i8035_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
required_device<sn76496_device> m_sn1;