Skip to content

Commit e9d6438

Browse files
committed
fix project structure
1 parent d43b397 commit e9d6438

15 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# goones
2-
NES Emulator written in Golang.
2+
NES Emulator written in Golang. It is a toy project for me.
33

44
![super-mario-bros](https://github.com/ad-sho-loko/goones/blob/etc/image/img/super-mario-bro.png)
55

main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package main
22

33
import (
44
"fmt"
5-
"go_nes/src/nes"
6-
"go_nes/src/ui"
5+
"github.com/ad-sho-loko/goones/nes"
6+
"github.com/ad-sho-loko/goones/ui"
77
"os"
88
)
99

src/nes/bus.go nes/bus.go

File renamed without changes.

src/nes/common.go nes/common.go

File renamed without changes.

src/nes/const.go nes/const.go

File renamed without changes.
File renamed without changes.

src/nes/cpu.go nes/cpu.go

File renamed without changes.

src/nes/ines.go nes/ines.go

File renamed without changes.

src/nes/nes.go nes/nes.go

File renamed without changes.

src/nes/ppu.go nes/ppu.go

File renamed without changes.

src/nes/ram.go nes/ram.go

File renamed without changes.

src/nes/render.go nes/render.go

File renamed without changes.

src/ui/director.go ui/director.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package ui
22

33
import (
4+
"github.com/ad-sho-loko/goones/nes"
45
"github.com/go-gl/gl/v2.1/gl"
56
"github.com/go-gl/glfw/v3.2/glfw"
6-
"go_nes/src/nes"
77
)
88

99
type Director struct {

src/ui/run.go ui/run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package ui
22

33
import (
4+
"github.com/ad-sho-loko/goones/nes"
45
"github.com/go-gl/gl/v2.1/gl"
56
"github.com/go-gl/glfw/v3.2/glfw"
6-
"go_nes/src/nes"
77
"log"
88
"runtime"
99
)

src/ui/view.go ui/view.go

File renamed without changes.

0 commit comments

Comments
 (0)