diff --git a/src/cpu.rs b/src/cpu.rs index 8082fc2..cdf1fff 100644 --- a/src/cpu.rs +++ b/src/cpu.rs @@ -569,4 +569,8 @@ mod tests { registers.set(Register::PC(0b0101010111111111)); assert_eq!(registers.get(Register::PC(0)), 0b0101010111111111); } + + #[test] + fn test_cpu_instructions() { + } }