blob: 387395777d08ba2249809d15f743b2eb0aebdc4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// license:BSD-3-Clause
// copyright-holders:Nathan Woods
#pragma once
#ifndef __COCO_ORCH90_H__
#define __COCO_ORCH90_H__
#include "emu.h"
#include "sound/dac.h"
#include "cococart.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> coco_orch90_device
class coco_orch90_device :
public device_t,
public device_cococart_interface
{
public:
// construction/destruction
coco_orch90_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const override;
protected:
// device-level overrides
virtual void device_start() override;
virtual DECLARE_WRITE8_MEMBER(write) override;
private:
// internal state
required_device<dac_byte_interface> m_ldac;
required_device<dac_byte_interface> m_rdac;
};
// device type definition
extern const device_type COCO_ORCH90;
#endif /* __COCO_ORCH90_H__ */
|