mirror of
https://github.com/mre/mos6502.git
synced 2024-11-28 22:51:26 +00:00
cargo fmt
This commit is contained in:
parent
4e057a2a94
commit
e4aebb9dfe
@ -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) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user