Removed some extraneous semicolons. (#12029)

* cpu/z180/z180op.hxx: Remove extraneous semicolon.
* machine/ldv1000hle.cpp: Remove extraneous semicolon
This commit is contained in:
amameuser 2024-02-13 11:37:59 +00:00 committed by GitHub
parent 42abce0203
commit b32ba2d2d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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 */

View File

@ -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);