From 523d298bd27fe21236791a70fd02422fe54408b3 Mon Sep 17 00:00:00 2001 From: Cassiano <“cassianoperin@gmail.com@users.noreply.github.com”> Date: Fri, 25 Nov 2022 23:34:10 -0300 Subject: [PATCH] Renamed project from CHIP8 to CHIP8_GO --- CPU/CPU.go | 4 ++-- CPU/CoreCHIP8.go | 2 +- CPU/CoreCHIP8_HiRes.go | 2 +- CPU/CoreSCHIP.go | 2 +- CPU/Qwirks.go | 2 +- CPU/Rewind.go | 2 +- CPU/SaveState.go | 2 +- Graphics/Debug.go | 4 ++-- Graphics/Graphics.go | 8 ++++---- Input/Input.go | 4 ++-- Input/Remap.go | 2 +- chip8.go | 8 ++++---- go.mod | 2 +- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/CPU/CPU.go b/CPU/CPU.go index 5f0bbc7..0f15360 100644 --- a/CPU/CPU.go +++ b/CPU/CPU.go @@ -1,8 +1,8 @@ package CPU import ( - "CHIP8/Fontset" - "CHIP8/Global" + "CHIP8_GO/Fontset" + "CHIP8_GO/Global" "fmt" "os" "time" diff --git a/CPU/CoreCHIP8.go b/CPU/CoreCHIP8.go index 2d1ad29..1278eda 100644 --- a/CPU/CoreCHIP8.go +++ b/CPU/CoreCHIP8.go @@ -41,7 +41,7 @@ package CPU import ( - "CHIP8/Global" + "CHIP8_GO/Global" "fmt" "math/rand" "os" diff --git a/CPU/CoreCHIP8_HiRes.go b/CPU/CoreCHIP8_HiRes.go index d4d8e6c..23edae1 100644 --- a/CPU/CoreCHIP8_HiRes.go +++ b/CPU/CoreCHIP8_HiRes.go @@ -7,7 +7,7 @@ package CPU import ( - "CHIP8/Global" + "CHIP8_GO/Global" "fmt" ) diff --git a/CPU/CoreSCHIP.go b/CPU/CoreSCHIP.go index d902e26..73ab722 100644 --- a/CPU/CoreSCHIP.go +++ b/CPU/CoreSCHIP.go @@ -14,7 +14,7 @@ package CPU import ( - "CHIP8/Global" + "CHIP8_GO/Global" "fmt" "os" "time" diff --git a/CPU/Qwirks.go b/CPU/Qwirks.go index d213872..ce66de7 100644 --- a/CPU/Qwirks.go +++ b/CPU/Qwirks.go @@ -1,7 +1,7 @@ package CPU import ( - "CHIP8/Global" + "CHIP8_GO/Global" "fmt" ) diff --git a/CPU/Rewind.go b/CPU/Rewind.go index cee8db4..0e114e9 100644 --- a/CPU/Rewind.go +++ b/CPU/Rewind.go @@ -1,7 +1,7 @@ package CPU import ( - "CHIP8/Global" + "CHIP8_GO/Global" "fmt" "time" ) diff --git a/CPU/SaveState.go b/CPU/SaveState.go index 55ecd2e..1399ea5 100644 --- a/CPU/SaveState.go +++ b/CPU/SaveState.go @@ -1,7 +1,7 @@ package CPU import ( - "CHIP8/Global" + "CHIP8_GO/Global" "encoding/json" "fmt" "io/ioutil" diff --git a/Graphics/Debug.go b/Graphics/Debug.go index 6c40783..7401f4f 100644 --- a/Graphics/Debug.go +++ b/Graphics/Debug.go @@ -1,8 +1,8 @@ package Graphics import ( - "CHIP8/CPU" - "CHIP8/Global" + "CHIP8_GO/CPU" + "CHIP8_GO/Global" "fmt" "github.com/faiface/pixel" diff --git a/Graphics/Graphics.go b/Graphics/Graphics.go index 8be9514..fca9a49 100644 --- a/Graphics/Graphics.go +++ b/Graphics/Graphics.go @@ -1,10 +1,10 @@ package Graphics import ( - "CHIP8/CPU" - "CHIP8/Global" - "CHIP8/Input" - "CHIP8/Sound" + "CHIP8_GO/CPU" + "CHIP8_GO/Global" + "CHIP8_GO/Input" + "CHIP8_GO/Sound" "fmt" "github.com/faiface/pixel" diff --git a/Input/Input.go b/Input/Input.go index 9f76a48..ce97496 100644 --- a/Input/Input.go +++ b/Input/Input.go @@ -1,8 +1,8 @@ package Input import ( - "CHIP8/CPU" - "CHIP8/Global" + "CHIP8_GO/CPU" + "CHIP8_GO/Global" "fmt" "os" "time" diff --git a/Input/Remap.go b/Input/Remap.go index e773431..8017d95 100644 --- a/Input/Remap.go +++ b/Input/Remap.go @@ -1,7 +1,7 @@ package Input import ( - "CHIP8/Global" + "CHIP8_GO/Global" "fmt" "github.com/faiface/pixel/pixelgl" diff --git a/chip8.go b/chip8.go index cd5cbfe..efb4a41 100644 --- a/chip8.go +++ b/chip8.go @@ -1,10 +1,10 @@ package main import ( - "CHIP8/CPU" - "CHIP8/Global" - "CHIP8/Graphics" - "CHIP8/Sound" + "CHIP8_GO/CPU" + "CHIP8_GO/Global" + "CHIP8_GO/Graphics" + "CHIP8_GO/Sound" "crypto/md5" "flag" "fmt" diff --git a/go.mod b/go.mod index e8e97a4..a8d0a81 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module CHIP8 +module CHIP8_GO go 1.19