From 99ca29f244dae8854b10ba95541b6032dab61756 Mon Sep 17 00:00:00 2001 From: MichaelValwin Date: Sun, 8 Sep 2024 22:15:06 +0200 Subject: [PATCH] Deleting lines lol --- src/cpu.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cpu.ts b/src/cpu.ts index e7f4872..4e43544 100644 --- a/src/cpu.ts +++ b/src/cpu.ts @@ -228,21 +228,18 @@ class CPU { }else if(nib4 == 0x1) { // 8XY1 // Vx |= Vy - this.regs[nib2] |= this.regs[nib3]; this.regs[0xF] = 0; this.incrementPC(); }else if(nib4 == 0x2) { // 8XY2 // Vx &= Vy - this.regs[nib2] &= this.regs[nib3]; this.regs[0xF] = 0; this.incrementPC(); }else if(nib4 == 0x3) { // 8XY3 // Vx ^= Vy - this.regs[nib2] ^= this.regs[nib3]; this.regs[0xF] = 0; this.incrementPC();