summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-02-11 18:24:55 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-02-11 18:27:01 -0500
commit80621acaf1329fb9dafe8742b2f696278c665752 (patch)
treed8231b8da34157409a791b83b32e9544834d7bd0 /src/mame/includes
parent58e8ca846c72e771c35c8ce3ff6228ddeba0573c (diff)
grobda: Eliminate DAC and allow the 15XX custom to play the speech sample
* sound/namco.cpp: Allow channels to still play with a frequency of 0; allow writes to manipulate the counter directly for namco15xx
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/mappy.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mame/includes/mappy.h b/src/mame/includes/mappy.h
index 455cebad247..4484011c8e7 100644
--- a/src/mame/includes/mappy.h
+++ b/src/mame/includes/mappy.h
@@ -6,7 +6,6 @@
#pragma once
#include "machine/namcoio.h"
-#include "sound/dac.h"
#include "sound/namco.h"
#include "emupal.h"
#include "screen.h"
@@ -24,7 +23,6 @@ public:
m_subcpu2(*this, "sub2"),
m_namcoio(*this, "namcoio_%u", 1),
m_namco_15xx(*this, "namco"),
- m_dac(*this, "dac"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
@@ -56,7 +54,6 @@ private:
optional_device<cpu_device> m_subcpu2;
required_device_array<namcoio_device, 2> m_namcoio;
required_device<namco_15xx_device> m_namco_15xx;
- optional_device<dac_byte_interface> m_dac;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
@@ -103,7 +100,6 @@ private:
void mappy_draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, uint8_t *spriteram_base);
void phozon_draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, uint8_t *spriteram_base);
- void grobda_cpu2_map(address_map &map);
void mappy_cpu1_map(address_map &map);
void mappy_cpu2_map(address_map &map);
void phozon_cpu1_map(address_map &map);