summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/model1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/model1.h')
-rw-r--r--src/mame/includes/model1.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/model1.h b/src/mame/includes/model1.h
index 9f33cf94790..361e42ed672 100644
--- a/src/mame/includes/model1.h
+++ b/src/mame/includes/model1.h
@@ -57,6 +57,7 @@ public:
, m_palette(*this, "palette")
, m_tiles(*this, "tile")
, m_digits(*this, "digit%u", 0U)
+ , m_outs(*this, "out%u", 0U)
{
}
@@ -505,7 +506,9 @@ private:
// I/O related
output_finder<2> m_digits;
+ output_finder<8> m_outs;
DECLARE_READ8_MEMBER(dpram_r);
+ DECLARE_WRITE8_MEMBER(gen_outputs_w);
DECLARE_WRITE8_MEMBER(vf_outputs_w);
DECLARE_WRITE8_MEMBER(vr_outputs_w);
DECLARE_WRITE8_MEMBER(swa_outputs_w);
@@ -515,7 +518,4 @@ private:
DECLARE_WRITE8_MEMBER(drive_board_w);
};
-
-/*----------- defined in machine/model1.c -----------*/
-
#endif // MAME_INCLUDES_MODEL1_H