summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/vrender0.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/vrender0.cpp')
-rw-r--r--src/devices/machine/vrender0.cpp30
1 files changed, 5 insertions, 25 deletions
diff --git a/src/devices/machine/vrender0.cpp b/src/devices/machine/vrender0.cpp
index ef00ccc6ee1..76442866a6d 100644
--- a/src/devices/machine/vrender0.cpp
+++ b/src/devices/machine/vrender0.cpp
@@ -98,19 +98,9 @@ void vrender0soc_device::regs_map(address_map &map)
void vrender0soc_device::audiovideo_map(address_map &map)
{
map(0x00000000, 0x0000ffff).m(m_vr0vid, FUNC(vr0video_device::regs_map));
- map(0x00800000, 0x00ffffff).m(FUNC(vrender0soc_device::texture_map));
- map(0x01000000, 0x017fffff).m(FUNC(vrender0soc_device::frame_map));
- map(0x01800000, 0x01800fff).m(m_vr0snd, FUNC(vr0sound_device::sound_map));
-}
-
-void vrender0soc_device::texture_map(address_map &map)
-{
- map(0x000000, 0x7fffff).rw(FUNC(vrender0soc_device::textureram_r), FUNC(vrender0soc_device::textureram_w));
-}
-
-void vrender0soc_device::frame_map(address_map &map)
-{
- map(0x000000, 0x7fffff).rw(FUNC(vrender0soc_device::frameram_r), FUNC(vrender0soc_device::frameram_w));
+ map(0x00800000, 0x00ffffff).rw(FUNC(vrender0soc_device::textureram_r), FUNC(vrender0soc_device::textureram_w));
+ map(0x01000000, 0x017fffff).rw(FUNC(vrender0soc_device::frameram_r), FUNC(vrender0soc_device::frameram_w));
+ map(0x01800000, 0x01800fff).rw(m_vr0snd, FUNC(vr0sound_device::vr0_snd_read), FUNC(vr0sound_device::vr0_snd_write));
}
//-------------------------------------------------
@@ -140,10 +130,7 @@ void vrender0soc_device::device_add_mconfig(machine_config &config)
SPEAKER(config, m_lspeaker).front_left();
SPEAKER(config, m_rspeaker).front_right();
- SOUND_VRENDER0(config, m_vr0snd, DERIVED_CLOCK(1,1)); // Correct?
- m_vr0snd->set_addrmap(vr0sound_device::AS_TEXTURE, &vrender0soc_device::texture_map);
- m_vr0snd->set_addrmap(vr0sound_device::AS_FRAME, &vrender0soc_device::frame_map);
- m_vr0snd->irq_callback().set(FUNC(vrender0soc_device::soundirq_cb));
+ SOUND_VRENDER0(config, m_vr0snd, 0);
m_vr0snd->add_route(0, m_lspeaker, 1.0);
m_vr0snd->add_route(1, m_rspeaker, 1.0);
}
@@ -160,6 +147,7 @@ void vrender0soc_device::device_start()
m_frameram = auto_alloc_array_clear(machine(), uint16_t, 0x00800000/2);
m_vr0vid->set_areas(m_textureram, m_frameram);
+ m_vr0snd->set_areas(m_textureram, m_frameram);
m_host_space = &m_host_cpu->space(AS_PROGRAM);
if (this->clock() == 0)
@@ -338,14 +326,6 @@ int vrender0soc_device::irq_callback()
}
-WRITE_LINE_MEMBER(vrender0soc_device::soundirq_cb)
-{
- if (state)
- {
- IntReq(2);
- }
-}
-
/*
*
* Timer