This commit is contained in:
Sid 2020-10-17 11:41:11 +01:00
parent edac661d26
commit 1f526b5331
2 changed files with 5 additions and 6 deletions

View File

@ -1,8 +1,8 @@
package chip8 package chip8
import ( import (
"math/rand"
"fmt" "fmt"
"math/rand"
) )
const graphicsBufferSize = 64 * 32 const graphicsBufferSize = 64 * 32
@ -386,4 +386,3 @@ func (cpu *Chip8) PerformCycle() {
cpu.fifteenIndexOpcodes() cpu.fifteenIndexOpcodes()
} }
} }

View File

@ -1,8 +1,8 @@
package main package main
import ( import (
"git.jacknet.io/S.D/Chip-8_Go/chip8"
"fmt" "fmt"
"git.jacknet.io/S.D/Chip-8_Go/chip8"
) )
func main() { func main() {