summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/namco.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-06-16 12:47:52 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-29 23:06:41 +0200
commit45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch)
tree4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/sound/namco.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/sound/namco.h')
-rw-r--r--src/devices/sound/namco.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/namco.h b/src/devices/sound/namco.h
index f032a71a536..45bda912528 100644
--- a/src/devices/sound/namco.h
+++ b/src/devices/sound/namco.h
@@ -34,7 +34,7 @@ protected:
int32_t waveform_select;
};
- namco_audio_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
+ namco_audio_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock);
// device-level overrides
virtual void device_start() override;
@@ -76,7 +76,7 @@ protected:
class namco_device : public namco_audio_device
{
public:
- namco_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ namco_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
void pacman_sound_w(offs_t offset, uint8_t data);
@@ -97,7 +97,7 @@ private:
class namco_15xx_device : public namco_audio_device
{
public:
- namco_15xx_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ namco_15xx_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
void namco_15xx_w(offs_t offset, uint8_t data);
uint8_t sharedram_r(offs_t offset);
@@ -117,7 +117,7 @@ private:
class namco_cus30_device : public namco_audio_device
{
public:
- namco_cus30_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ namco_cus30_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
void namcos1_cus30_w(offs_t offset, uint8_t data); /* wavedata + sound registers + RAM */
uint8_t namcos1_cus30_r(offs_t offset);