From b32ba2d2d2d38ed22b73857a846c34937681f386 Mon Sep 17 00:00:00 2001 From: amameuser <64736148+amameuser@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:37:59 +0000 Subject: Removed some extraneous semicolons. (#12029) * cpu/z180/z180op.hxx: Remove extraneous semicolon. * machine/ldv1000hle.cpp: Remove extraneous semicolon --- src/devices/cpu/z180/z180op.hxx | 2 +- src/devices/machine/ldv1000hle.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/z180/z180op.hxx b/src/devices/cpu/z180/z180op.hxx index bdecb65966e..824f95dccaa 100644 --- a/src/devices/cpu/z180/z180op.hxx +++ b/src/devices/cpu/z180/z180op.hxx @@ -33,7 +33,7 @@ OP(op,17) { RLA; } /* RLA OP(op,18) { JR(); } /* JR o */ OP(op,19) { ADD16(HL,DE); } /* ADD HL,DE */ OP(op,1a) { _A = RM(_DE); } /* LD A,(DE) */ -OP(op,1b) { _DE--; ; } /* DEC DE */ +OP(op,1b) { _DE--; } /* DEC DE */ OP(op,1c) { _E = INC(_E); } /* INC E */ OP(op,1d) { _E = DEC(_E); } /* DEC E */ OP(op,1e) { _E = ARG(); } /* LD E,n */ diff --git a/src/devices/machine/ldv1000hle.cpp b/src/devices/machine/ldv1000hle.cpp index 1bbf315c26b..8d67db64186 100644 --- a/src/devices/machine/ldv1000hle.cpp +++ b/src/devices/machine/ldv1000hle.cpp @@ -78,7 +78,7 @@ void pioneer_ldv1000hle_device::device_start() // allocate timers m_vbi_fetch = timer_alloc(FUNC(pioneer_ldv1000hle_device::process_vbi_data), this); m_stop_timer = timer_alloc(FUNC(pioneer_ldv1000hle_device::resume_from_stop), this); - m_park_strobe_timer = timer_alloc(FUNC(pioneer_ldv1000hle_device::park_strobe_tick), this);; + m_park_strobe_timer = timer_alloc(FUNC(pioneer_ldv1000hle_device::park_strobe_tick), this); m_assert_status_strobe_timer = timer_alloc(FUNC(pioneer_ldv1000hle_device::assert_status_strobe), this); m_deassert_status_strobe_timer = timer_alloc(FUNC(pioneer_ldv1000hle_device::deassert_status_strobe), this); m_assert_command_strobe_timer = timer_alloc(FUNC(pioneer_ldv1000hle_device::assert_command_strobe), this); -- cgit v1.2.3