diff options
author | 2017-05-17 15:07:50 -0400 | |
---|---|---|
committer | 2017-05-17 15:07:50 -0400 | |
commit | e73dc778735c47c44aca2cc369b27f53ecb5bf23 (patch) | |
tree | 2a474df6b269ee7481727ab87c45d59c687464d2 /src/mame/includes/mitchell.h | |
parent | 827539b2164cea31e691be526b1a17347433acba (diff) | |
parent | 4a80fb2d2598c8feaf8ecdd8c36e5aa184e3cdea (diff) |
Merge pull request #2317 from DavidHaywood/pangfix2
mitchell.cpp : just use the finder method for nvram
Diffstat (limited to 'src/mame/includes/mitchell.h')
-rw-r--r-- | src/mame/includes/mitchell.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mame/includes/mitchell.h b/src/mame/includes/mitchell.h index 7b85ad26240..d2bfc8ac8af 100644 --- a/src/mame/includes/mitchell.h +++ b/src/mame/includes/mitchell.h @@ -30,7 +30,6 @@ public: m_soundlatch(*this, "soundlatch"), m_colorram(*this, "colorram"), m_videoram(*this, "videoram"), - m_mainram(*this, "ram"), m_bank1(*this, "bank1"), m_bank0d(*this, "bank0d"), m_bank1d(*this, "bank1d"), @@ -51,7 +50,6 @@ public: /* memory pointers */ required_shared_ptr<uint8_t> m_colorram; required_shared_ptr<uint8_t> m_videoram; - optional_shared_ptr<uint8_t> m_mainram; required_memory_bank m_bank1; optional_memory_bank m_bank0d; optional_memory_bank m_bank1d; @@ -74,7 +72,6 @@ public: int m_dial_selected; int m_dir[2]; int m_keymatrix; - uint8_t m_dummy_nvram; uint8_t m_irq_source; DECLARE_READ8_MEMBER(pang_port5_r); |