mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
Removed some extraneous semicolons. (#12029)
* cpu/z180/z180op.hxx: Remove extraneous semicolon. * machine/ldv1000hle.cpp: Remove extraneous semicolon
This commit is contained in:
parent
42abce0203
commit
b32ba2d2d2
@ -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 */
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user