1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-13 00:29:33 +00:00

cargo clippy --fix

This commit is contained in:
Sam M W 2022-10-21 06:34:42 +01:00
parent 95731752ba
commit 7500e8816e

View File

@ -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) => {