summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/p2000t.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/p2000t.h')
-rw-r--r--src/mame/includes/p2000t.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/includes/p2000t.h b/src/mame/includes/p2000t.h
index 3999d02c345..d0f2654f6f2 100644
--- a/src/mame/includes/p2000t.h
+++ b/src/mame/includes/p2000t.h
@@ -14,6 +14,7 @@
#include "cpu/z80/z80.h"
#include "sound/spkrdev.h"
#include "video/saa5050.h"
+#include "machine/p2000t_mdcr.h"
#include "emupal.h"
@@ -25,6 +26,7 @@ public:
, m_videoram(*this, "videoram")
, m_maincpu(*this, "maincpu")
, m_speaker(*this, "speaker")
+ , m_mdcr(*this, "mdcr")
, m_keyboard(*this, "KEY.%u", 0)
{
}
@@ -52,6 +54,8 @@ protected:
required_device<cpu_device> m_maincpu;
required_device<speaker_sound_device> m_speaker;
+ // Only the P2000t has this device.
+ optional_device<mdcr_device> m_mdcr;
private:
required_ioport_array<10> m_keyboard;