Browse Source

make the match exhuastive ... barely

master
Stephanie Gredell 12 months ago
parent
commit
46840c43a4
  1. 4
      cpu.rs

4
cpu.rs

@ -72,6 +72,10 @@ impl CPU {
self.status = self.status & 0b1111_1101; self.status = self.status & 0b1111_1101;
} }
} }
0x00 => {
return;
}
_ => todo!(),
} }
} }
} }

Loading…
Cancel
Save