Update tests with basic init

This commit is contained in:
2025-12-13 20:29:52 -06:00
parent 4113570eb3
commit fecef26e2f
12 changed files with 17349 additions and 56 deletions

View File

@@ -91,6 +91,10 @@ impl APU {
self.pulse_2.enabled = val & 0b0000_0010 != 0;
self.pulse_1.enabled = val & 0b0000_0001 != 0;
}
0x10 => {
assert_eq!(val, 0x00);
// TODO: implement this value
}
0x11 => {
// TODO: load dmc counter with (val & 7F)
}