From 483426ff2ead5963ff70b80aa47d190a30e48ad1 Mon Sep 17 00:00:00 2001 From: Patrick Mackinlay Date: Thu, 20 Jul 2023 13:29:17 +0700 Subject: fix the build --- src/mame/sgi/4dpi.cpp | 4 ++-- src/mame/sgi/hpc1.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/sgi/4dpi.cpp b/src/mame/sgi/4dpi.cpp index 5a3d97a893c..59f06222013 100644 --- a/src/mame/sgi/4dpi.cpp +++ b/src/mame/sgi/4dpi.cpp @@ -662,7 +662,7 @@ void pi4d2x_state::common(machine_config &config) EEPROM_93C56_16BIT(config, m_eeprom); - DP8572A(config, m_rtc, 32.768_KHz_XTAL); + DP8572A(config, m_rtc, 32.768_kHz_XTAL); PIT8254(config, m_pit); m_pit->set_clk<2>(3.6864_MHz_XTAL); @@ -792,7 +792,7 @@ void pi4d3x_state::common(machine_config &config) EEPROM_93C56_16BIT(config, m_eeprom); - DP8572A(config, m_rtc, 32.768_KHz_XTAL); + DP8572A(config, m_rtc, 32.768_kHz_XTAL); // 1: local0 // 2: local1 diff --git a/src/mame/sgi/hpc1.cpp b/src/mame/sgi/hpc1.cpp index 478a0465a3a..fa982d28c4b 100644 --- a/src/mame/sgi/hpc1.cpp +++ b/src/mame/sgi/hpc1.cpp @@ -184,7 +184,7 @@ void hpc1_device::device_add_mconfig(machine_config &config) NSCSI_CONNECTOR(config, "scsibus:6", scsi_devices, nullptr, false); NSCSI_CONNECTOR(config, "scsibus:7", scsi_devices, nullptr, false); - DP8572A(config, m_rtc, 32.768_KHz_XTAL).set_use_utc(true); + DP8572A(config, m_rtc, 32.768_kHz_XTAL).set_use_utc(true); PIT8254(config, m_pit, 0); m_pit->set_clk<0>(1000000); -- cgit v1.2.3