Initial commit

This commit is contained in:
Timur Celik 2025-12-01 11:05:42 +01:00
commit b7ef7cef01
4 changed files with 28 additions and 0 deletions

4
go.env Normal file
View File

@ -0,0 +1,4 @@
GOTOOLCHAIN=go1.24.4-embedded
GOOS=noos
GOARCH=mips64
GOFLAGS='-exec=n64go rom -run' '-toolexec=n64go toolexec' '-tags=n64' '-trimpath' '-mod=mod'

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module n64tutorial
go 1.24.4
require github.com/clktmr/n64 v0.1.2

12
go.sum Normal file
View File

@ -0,0 +1,12 @@
github.com/clktmr/n64 v0.1.2 h1:1ASZT48vVAXQAInaUT3kRShVlvPocSha1BMRr8ctL10=
github.com/clktmr/n64 v0.1.2/go.mod h1:9+cZbOc/SzwtaMK0jxRieBVhMdrdUXtJnijIL3RIbZo=
github.com/embeddedgo/display v1.1.0 h1:jXlY6/FeaUV89hX+ANGpTKogZWjhgno7vrCh86WA8aY=
github.com/embeddedgo/display v1.1.0/go.mod h1:0sxxBoklqMbA1uBqEAg8Plntmwvt7cNsgxaf7UaS4yw=
github.com/embeddedgo/fs v0.1.0 h1:M4bOltC28+cWixII514NKExkrRzBnjWLaRbTvZ87kIE=
github.com/embeddedgo/fs v0.1.0/go.mod h1:0PeMg4i1WKpXdRqXEktx9o0Wd9EIzwWD4KTBbvAvZ3Q=
github.com/sigurn/crc8 v0.0.0-20220107193325-2243fe600f9f h1:1R9KdKjCNSd7F8iGTxIpoID9prlYH8nuNYKt0XvweHA=
github.com/sigurn/crc8 v0.0.0-20220107193325-2243fe600f9f/go.mod h1:vQhwQ4meQEDfahT5kd61wLAF5AAeh5ZPLVI4JJ/tYo8=
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b h1:M2rDM6z3Fhozi9O7NWsxAkg/yqS/lQJ6PmkyIV3YP+o=
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b/go.mod h1:3//PLf8L/X+8b4vuAfHzxeRUl04Adcb341+IGKfnqS8=
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import _ "github.com/clktmr/n64/machine"
func main() {
println("N⁶⁴ - Get N or Get Out ♫")
}