Skip to content

Commit

Permalink
Renamed project from CHIP8 to CHIP8_GO
Browse files Browse the repository at this point in the history
  • Loading branch information
Cassiano committed Nov 26, 2022
1 parent d8f5992 commit 523d298
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions CPU/CPU.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package CPU

import (
"CHIP8/Fontset"
"CHIP8/Global"
"CHIP8_GO/Fontset"
"CHIP8_GO/Global"
"fmt"
"os"
"time"
Expand Down
2 changes: 1 addition & 1 deletion CPU/CoreCHIP8.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
package CPU

import (
"CHIP8/Global"
"CHIP8_GO/Global"
"fmt"
"math/rand"
"os"
Expand Down
2 changes: 1 addition & 1 deletion CPU/CoreCHIP8_HiRes.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package CPU

import (
"CHIP8/Global"
"CHIP8_GO/Global"
"fmt"
)

Expand Down
2 changes: 1 addition & 1 deletion CPU/CoreSCHIP.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
package CPU

import (
"CHIP8/Global"
"CHIP8_GO/Global"
"fmt"
"os"
"time"
Expand Down
2 changes: 1 addition & 1 deletion CPU/Qwirks.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package CPU

import (
"CHIP8/Global"
"CHIP8_GO/Global"
"fmt"
)

Expand Down
2 changes: 1 addition & 1 deletion CPU/Rewind.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package CPU

import (
"CHIP8/Global"
"CHIP8_GO/Global"
"fmt"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion CPU/SaveState.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package CPU

import (
"CHIP8/Global"
"CHIP8_GO/Global"
"encoding/json"
"fmt"
"io/ioutil"
Expand Down
4 changes: 2 additions & 2 deletions Graphics/Debug.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package Graphics

import (
"CHIP8/CPU"
"CHIP8/Global"
"CHIP8_GO/CPU"
"CHIP8_GO/Global"
"fmt"

"github.com/faiface/pixel"
Expand Down
8 changes: 4 additions & 4 deletions Graphics/Graphics.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions Input/Input.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package Input

import (
"CHIP8/CPU"
"CHIP8/Global"
"CHIP8_GO/CPU"
"CHIP8_GO/Global"
"fmt"
"os"
"time"
Expand Down
2 changes: 1 addition & 1 deletion Input/Remap.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Input

import (
"CHIP8/Global"
"CHIP8_GO/Global"
"fmt"

"github.com/faiface/pixel/pixelgl"
Expand Down
8 changes: 4 additions & 4 deletions chip8.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module CHIP8
module CHIP8_GO

go 1.19

Expand Down

0 comments on commit 523d298

Please sign in to comment.