summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/relief.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/relief.h')
-rw-r--r--src/mame/includes/relief.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/includes/relief.h b/src/mame/includes/relief.h
index 65fd4273ed2..ff4ae3bce3e 100644
--- a/src/mame/includes/relief.h
+++ b/src/mame/includes/relief.h
@@ -14,13 +14,16 @@ class relief_state : public atarigen_state
public:
relief_state(const machine_config &mconfig, device_type type, const char *tag)
: atarigen_state(mconfig, type, tag),
- m_vad(*this, "vad") { }
+ m_vad(*this, "vad"),
+ m_okibank(*this, "okibank")
+ { }
required_device<atari_vad_device> m_vad;
+ required_memory_bank m_okibank;
UINT8 m_ym2413_volume;
UINT8 m_overall_volume;
- UINT32 m_adpcm_bank_base;
+ UINT8 m_adpcm_bank;
virtual void update_interrupts();
DECLARE_READ16_MEMBER(special_port2_r);
DECLARE_WRITE16_MEMBER(audio_control_w);