1
0
mirror of https://github.com/mre/mos6502.git synced 2024-11-28 22:51:26 +00:00

cargo fmt

This commit is contained in:
Sam M W 2022-10-21 06:42:27 +01:00
parent 4e057a2a94
commit e4aebb9dfe

View File

@ -208,7 +208,10 @@ impl CPU {
} }
(Instruction::DEC, OpInput::UseAddress(addr)) => { (Instruction::DEC, OpInput::UseAddress(addr)) => {
CPU::decrement(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) => {