summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/fastfred.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/fastfred.h')
-rw-r--r--src/mame/includes/fastfred.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/mame/includes/fastfred.h b/src/mame/includes/fastfred.h
index fd090b0abd6..be8769a0bc3 100644
--- a/src/mame/includes/fastfred.h
+++ b/src/mame/includes/fastfred.h
@@ -7,18 +7,21 @@
***************************************************************************/
+#include "machine/74259.h"
#include "includes/galaxold.h"
class fastfred_state : public galaxold_state
{
public:
fastfred_state(const machine_config &mconfig, device_type type, const char *tag)
- : galaxold_state(mconfig, type, tag),
- m_videoram(*this, "videoram"),
- m_spriteram(*this, "spriteram"),
- m_attributesram(*this, "attributesram"),
- m_background_color(*this, "bgcolor"),
- m_imago_fg_videoram(*this, "imago_fg_vram") { }
+ : galaxold_state(mconfig, type, tag)
+ , m_outlatch(*this, "outlatch")
+ , m_videoram(*this, "videoram")
+ , m_spriteram(*this, "spriteram")
+ , m_attributesram(*this, "attributesram")
+ , m_background_color(*this, "bgcolor")
+ , m_imago_fg_videoram(*this, "imago_fg_vram")
+ { }
void jumpcoas(machine_config &config);
void imago(machine_config &config);
@@ -33,6 +36,7 @@ public:
void init_boggy84b();
private:
+ required_device<ls259_device> m_outlatch;
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_spriteram;
required_shared_ptr<uint8_t> m_attributesram;