summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/samcoupe/expansion/voicebox.h
blob: 775bc544a499b0a1c8599a93ac472de68456e440 (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
43
44
45
46
// license: GPL-2.0+
// copyright-holders: Dirk Best
/***************************************************************************

    Voicebox for SAM Coupe

***************************************************************************/

#ifndef MAME_BUS_SAMCOUPE_EXPANSION_VOICEBOX_H
#define MAME_BUS_SAMCOUPE_EXPANSION_VOICEBOX_H

#pragma once

#include "expansion.h"
#include "sound/sp0256.h"


//**************************************************************************
//  TYPE DEFINITIONS
//**************************************************************************

// ======================> sam_voicebox_device

class sam_voicebox_device : public device_t, public device_samcoupe_expansion_interface
{
public:
	// construction/destruction
	sam_voicebox_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);

	// from host
	virtual uint8_t iorq_r(offs_t offset) override;
	virtual void iorq_w(offs_t offset, uint8_t data) override;

protected:
	virtual const tiny_rom_entry *device_rom_region() const override;
	virtual void device_add_mconfig(machine_config &config) override;
	virtual void device_start() override;

private:
	required_device<sp0256_device> m_sp0256;
};

// device type definition
DECLARE_DEVICE_TYPE(SAM_VOICEBOX, sam_voicebox_device)

#endif // MAME_BUS_SAMCOUPE_EXPANSION_VOICEBOX_H