summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fidel_phantom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fidel_phantom.cpp')
-rw-r--r--src/mame/drivers/fidel_phantom.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/drivers/fidel_phantom.cpp b/src/mame/drivers/fidel_phantom.cpp
index a277452af80..c516dc6090f 100644
--- a/src/mame/drivers/fidel_phantom.cpp
+++ b/src/mame/drivers/fidel_phantom.cpp
@@ -41,7 +41,8 @@ class phantom_state : public fidelbase_state
{
public:
phantom_state(const machine_config &mconfig, device_type type, const char *tag) :
- fidelbase_state(mconfig, type, tag)
+ fidelbase_state(mconfig, type, tag),
+ m_rombank(*this, "rombank")
{ }
void fphantom(machine_config &config);
@@ -51,6 +52,9 @@ protected:
virtual void machine_reset() override;
private:
+ // devices/pointers
+ required_memory_bank m_rombank;
+
void main_map(address_map &map);
};