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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
/***********************************************************************************************************
Mattel Intellivoice cart emulation
TODO:
- speech ROM shall be loaded from softlist
***********************************************************************************************************/
#include "emu.h"
#include "voice.h"
#include "speaker.h"
//-------------------------------------------------
// intv_voice_device - constructor
//-------------------------------------------------
DEFINE_DEVICE_TYPE(INTV_ROM_VOICE, intv_voice_device, "intv_voice", "Intellivision Intellivoice Expansion")
intv_voice_device::intv_voice_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: intv_rom_device(mconfig, INTV_ROM_VOICE, tag, owner, clock),
m_speech(*this, "sp0256_speech"),
m_subslot(*this, "subslot"),
m_ramd0_enabled(false),
m_ram88_enabled(false)
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void intv_voice_device::device_start()
{
}
void intv_voice_device::late_subslot_setup()
{
switch (m_subslot->get_type())
{
case INTV_RAM:
m_ramd0_enabled = true;
break;
case INTV_GFACT:
m_ram88_enabled = true;
break;
case INTV_VOICE:
printf("WARNING: You cannot connect serially multiple IntelliVoice units.\n");
printf("WARNING: Emulation will likely misbehave.\n");
break;
case INTV_ECS:
printf("WARNING: You cannot connect ECS to IntelliVoice in this manner.\n");
printf("WARNING: Emulation will likely misbehave.\n");
break;
case INTV_KEYCOMP:
printf("WARNING: You cannot connect the Keyboard component to the IntelliVoice unit.\n");
printf("WARNING: Emulation will likely misbehave.\n");
break;
}
}
//-------------------------------------------------
// device_add_mconfig - add device configuration
//-------------------------------------------------
void intv_voice_device::device_add_mconfig(machine_config &config)
{
SPEAKER(config, "mono_voice").front_center();
SP0256(config, m_speech, XTAL::u(3120000));
/* The Intellivoice uses a speaker with its own volume control so the relative volumes to use are subjective */
m_speech->add_route(ALL_OUTPUTS, "mono_voice", 1.00);
INTV_CART_SLOT(config, m_subslot, intv_cart, nullptr);
}
ROM_START( intellivoice )
ROM_REGION( 0x10000, "sp0256_speech", 0 )
/* SP0256-012 Speech chip w/2KiB mask rom */
ROM_LOAD( "sp0256-012.bin", 0x1000, 0x0800, CRC(0de7579d) SHA1(618563e512ff5665183664f52270fa9606c9d289) )
ROM_END
const tiny_rom_entry *intv_voice_device::device_rom_region() const
{
return ROM_NAME( intellivoice );
}
/*-------------------------------------------------
read_audio
-------------------------------------------------*/
uint16_t intv_voice_device::read_speech(offs_t offset)
{
return m_speech->spb640_r(offset);
}
/*-------------------------------------------------
write_audio
-------------------------------------------------*/
void intv_voice_device::write_speech(offs_t offset, uint16_t data)
{
m_speech->spb640_w(offset, data);
}
uint16_t intv_voice_device::read_rom80(offs_t offset)
{
if (m_ram88_enabled && offset >= 0x800)
return m_subslot->read_ram(offset & 0x7ff);
else
return m_subslot->read_rom80(offset);
}
uint16_t intv_voice_device::read_romd0(offs_t offset)
{
if (m_ramd0_enabled && offset < 0x800)
return m_subslot->read_ram(offset);
else
return m_subslot->read_romd0(offset);
}
|