diff options
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -224,6 +224,10 @@ impl Chip8 { _ => unknown_opcode(opcode), }, 0xF000 => match opcode & 0x00FF { + 0x0007 => { + eprintln!("LD V{}, DT", x); + self.v[x] = self.delay_timer; + } 0x0015 => { eprintln!("LD DT, V{}", x); self.delay_timer = self.v[x]; |
