summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68340.cpp
diff options
context:
space:
mode:
author MooglyGuy <MooglyGuy@users.noreply.github.com>2023-05-31 17:43:46 +0200
committer GitHub <noreply@github.com>2023-06-01 01:43:46 +1000
commit9f661e567c4528e7f7f662209e4b677f12b99875 (patch)
tree5dbd6f4cc4c274c296511dbde1d802d68dea4743 /src/devices/machine/68340.cpp
parenta9935073709fffa95130ef1b7ea701c3a2325b9b (diff)
emu/device.h: Removed device (READ|WRITE)_LINE_MEMBER in favor of explicit function signatures. (#11283) [Ryan Holtz]
Diffstat (limited to 'src/devices/machine/68340.cpp')
-rw-r--r--src/devices/machine/68340.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/68340.cpp b/src/devices/machine/68340.cpp
index 56d9f7cd19c..0e21dfeac3e 100644
--- a/src/devices/machine/68340.cpp
+++ b/src/devices/machine/68340.cpp
@@ -247,7 +247,7 @@ void m68340_cpu_device::device_reset()
// Some hardwares pulls this low when resetting peripherals, most just ties this line to GND or VCC
// TODO: Support Limp mode and external clock with no PLL
-WRITE_LINE_MEMBER( m68340_cpu_device::set_modck )
+void m68340_cpu_device::set_modck(int state)
{
m_modck = state;
m_clock_mode &= ~(m68340_sim::CLOCK_MODCK | m68340_sim::CLOCK_PLL);
@@ -273,7 +273,7 @@ void m68340_cpu_device::device_start()
m_internal = &space(AS_PROGRAM);
}
-WRITE_LINE_MEMBER(m68340_cpu_device::reset_peripherals)
+void m68340_cpu_device::reset_peripherals(int state)
{
m_m68340SIM->module_reset();
m_m68340DMA->module_reset();