summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/orao.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/orao.h')
-rw-r--r--src/mess/includes/orao.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mess/includes/orao.h b/src/mess/includes/orao.h
index 6e83076dde8..6bfcfd9dbae 100644
--- a/src/mess/includes/orao.h
+++ b/src/mess/includes/orao.h
@@ -6,7 +6,7 @@
#ifndef ORAO_H_
#define ORAO_H_
-
+#include "sound/dac.h"
class orao_state : public driver_device
{
@@ -15,7 +15,8 @@ public:
: driver_device(mconfig, type, tag),
m_memory(*this, "memory"),
m_video_ram(*this, "video_ram"),
- m_maincpu(*this, "maincpu") { }
+ m_maincpu(*this, "maincpu"),
+ m_dac(*this, "dac") { }
required_shared_ptr<UINT8> m_memory;
required_shared_ptr<UINT8> m_video_ram;
@@ -27,6 +28,7 @@ public:
virtual void video_start();
UINT32 screen_update_orao(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
+ required_device<dac_device> m_dac;
};
#endif /* ORAO_H_ */