cargo fmt

This commit is contained in:
Sam M W 2022-10-21 06:42:27 +01:00
parent 4e057a2a94
commit e4aebb9dfe
1 changed files with 4 additions and 1 deletions

View File

@ -208,7 +208,10 @@ impl CPU {
}
(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) => {