mirror of
https://github.com/mre/mos6502.git
synced 2024-11-15 13:05:33 +00:00
cargo clippy --fix
This commit is contained in:
parent
95731752ba
commit
7500e8816e
@ -208,7 +208,7 @@ impl CPU {
|
|||||||
}
|
}
|
||||||
|
|
||||||
(Instruction::DEC, OpInput::UseAddress(addr)) => {
|
(Instruction::DEC, OpInput::UseAddress(addr)) => {
|
||||||
CPU::decrement(&mut self.memory.get_byte_mut_ref(addr), &mut self.registers.status);
|
CPU::decrement(self.memory.get_byte_mut_ref(addr), &mut self.registers.status);
|
||||||
}
|
}
|
||||||
|
|
||||||
(Instruction::DEY, OpInput::UseImplied) => {
|
(Instruction::DEY, OpInput::UseImplied) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user