summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/jazz.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/jazz.h')
-rw-r--r--src/mame/includes/jazz.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/jazz.h b/src/mame/includes/jazz.h
index 7b8135899e5..f774608e62f 100644
--- a/src/mame/includes/jazz.h
+++ b/src/mame/includes/jazz.h
@@ -42,6 +42,7 @@
#include "imagedev/floppy.h"
#include "formats/pc_dsk.h"
+#include "softlist.h"
class jazz_state : public driver_device
{
@@ -66,6 +67,7 @@ public:
, m_lpt(*this, "lpt")
, m_isp(*this, "isp")
, m_buzzer(*this, "buzzer")
+ , m_softlist(*this, "softlist")
, m_led(*this, "led0")
{
}
@@ -112,6 +114,7 @@ protected:
required_device<pc_lpt_device> m_lpt;
required_device<i82357_device> m_isp;
required_device<speaker_sound_device> m_buzzer;
+ required_device<software_list_device> m_softlist;
output_finder<> m_led;
};