summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/zaccaria.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/zaccaria.cpp')
-rw-r--r--src/mame/audio/zaccaria.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/audio/zaccaria.cpp b/src/mame/audio/zaccaria.cpp
index afb065e6968..04c06958195 100644
--- a/src/mame/audio/zaccaria.cpp
+++ b/src/mame/audio/zaccaria.cpp
@@ -242,7 +242,7 @@ zac1b111xx_melody_base::zac1b111xx_melody_base(
char const *name,
char const *tag,
device_t *owner,
- UINT32 clock,
+ uint32_t clock,
char const *shortname,
char const *source)
: device_t(mconfig, devtype, name, tag, owner, clock, shortname, source)
@@ -257,8 +257,8 @@ zac1b111xx_melody_base::zac1b111xx_melody_base(
READ8_MEMBER(zac1b111xx_melody_base::melodypia_porta_r)
{
- UINT8 const control = m_melodypia->b_output();
- UINT8 data = 0xff;
+ uint8_t const control = m_melodypia->b_output();
+ uint8_t data = 0xff;
if (0x01 == (control & 0x03))
data &= m_melodypsg1->data_r(space, 0);
@@ -271,7 +271,7 @@ READ8_MEMBER(zac1b111xx_melody_base::melodypia_porta_r)
WRITE8_MEMBER(zac1b111xx_melody_base::melodypia_porta_w)
{
- UINT8 const control = m_melodypia->b_output();
+ uint8_t const control = m_melodypia->b_output();
if (control & 0x02)
m_melodypsg1->data_address_w(space, (control >> 0) & 0x01, data);
@@ -310,7 +310,7 @@ void zac1b111xx_melody_base::device_reset()
// 1B11107-SPECIFIC IMPLEMENTATION
//**************************************************************************
-zac1b11107_audio_device::zac1b11107_audio_device(machine_config const &mconfig, char const *tag, device_t *owner, UINT32 clock)
+zac1b11107_audio_device::zac1b11107_audio_device(machine_config const &mconfig, char const *tag, device_t *owner, uint32_t clock)
: zac1b111xx_melody_base(mconfig, ZACCARIA_1B11107, "Zaccaria 1B11107 Sound Board", tag, owner, clock, "zac1b11107", __FILE__)
{
}
@@ -364,7 +364,7 @@ machine_config_constructor zac1b11107_audio_device::device_mconfig_additions() c
// 1B11142-SPECIFIC IMPLEMENTATION
//**************************************************************************
-zac1b11142_audio_device::zac1b11142_audio_device(machine_config const &mconfig, char const *tag, device_t *owner, UINT32 clock)
+zac1b11142_audio_device::zac1b11142_audio_device(machine_config const &mconfig, char const *tag, device_t *owner, uint32_t clock)
: zac1b111xx_melody_base(mconfig, ZACCARIA_1B11142, "Zaccaria 1B11142 Sound Board", tag, owner, clock, "zac1b11142", __FILE__)
, m_acs_cb(*this)
, m_audiocpu(*this, "audiocpu")