summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/input_merger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/input_merger.cpp')
-rw-r--r--src/devices/machine/input_merger.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/input_merger.cpp b/src/devices/machine/input_merger.cpp
index ceedca5d556..8c45c5b8794 100644
--- a/src/devices/machine/input_merger.cpp
+++ b/src/devices/machine/input_merger.cpp
@@ -32,7 +32,7 @@ const device_type INPUT_MERGER_ACTIVE_LOW = &device_creator<input_merger_active_
//-------------------------------------------------
input_merger_device::input_merger_device(machine_config const &mconfig, device_type type,
- char const *name, char const *tag, device_t *owner, UINT32 clock, char const *shortname, char const *source)
+ char const *name, char const *tag, device_t *owner, uint32_t clock, char const *shortname, char const *source)
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
m_output_handler(*this)
{
@@ -64,7 +64,7 @@ void input_merger_device::device_start()
// input_merger_active_high_device - constructor
//-------------------------------------------------
-input_merger_active_high_device::input_merger_active_high_device(machine_config const &mconfig, char const *tag, device_t *owner, UINT32 clock)
+input_merger_active_high_device::input_merger_active_high_device(machine_config const &mconfig, char const *tag, device_t *owner, uint32_t clock)
: input_merger_device(mconfig, INPUT_MERGER_ACTIVE_HIGH, "Input Merger (Active High)", tag, owner, clock, "input_merger_hi", __FILE__)
{
}
@@ -97,7 +97,7 @@ void input_merger_active_high_device::update_state()
// input_merger_active_low_device - constructor
//-------------------------------------------------
-input_merger_active_low_device::input_merger_active_low_device(machine_config const &mconfig, char const *tag, device_t *owner, UINT32 clock)
+input_merger_active_low_device::input_merger_active_low_device(machine_config const &mconfig, char const *tag, device_t *owner, uint32_t clock)
: input_merger_device(mconfig, INPUT_MERGER_ACTIVE_LOW, "Input Merger (Active Low)", tag, owner, clock, "input_merger_lo", __FILE__)
{
}