diff options
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -209,6 +209,10 @@ impl Chip8 { self.draw = true; } 0xF000 => match opcode & 0x00FF { + 0x0015 => { + eprintln!("LD DT, V{}", x); + self.delay_timer = self.v[x]; + } 0x001E => { eprintln!("ADD, I, V{}", x); self.i += self.v[x] as u16; |
