https://github.com/retroenv/nesgo
Nintendo Entertainment System tools written in Golang
https://github.com/retroenv/nesgo
6502 assembly-6502 cc65 compiler disassembler emulator famicom go golang nes nes-emulator nintendo nintendo-nes
Last synced: 4 months ago
JSON representation
Nintendo Entertainment System tools written in Golang
- Host: GitHub
- URL: https://github.com/retroenv/nesgo
- Owner: retroenv
- License: apache-2.0
- Created: 2021-11-30T23:23:24.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-22T17:59:56.000Z (almost 3 years ago)
- Last Synced: 2024-06-19T23:14:16.847Z (almost 2 years ago)
- Topics: 6502, assembly-6502, cc65, compiler, disassembler, emulator, famicom, go, golang, nes, nes-emulator, nintendo, nintendo-nes
- Language: Go
- Homepage:
- Size: 1000 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/funding.yml
- License: LICENSE
Awesome Lists containing this project
README
# nesgo - Golang based tooling for the NES
[](https://github.com/retroenv/nesgo/actions)
[](https://pkg.go.dev/github.com/retroenv/nesgo)
[](https://goreportcard.com/report/github.com/retroenv/nesgo)
[](https://codecov.io/gh/retroenv/nesgo)
nesgo offers tooling for the Nintendo Entertainment System (NES), written in Golang.
## Available tools
| Tool | Description |
|----------------------------------------------------------------------------|---------------------------------|
| [nesgo](https://github.com/retroenv/nesgo/tree/main/cmd/nesgo) | Golang to NES compiler |
| [nesgoemu](https://github.com/retroenv/nesgo/tree/main/cmd/nesgoemu) | Emulator for NES ROMs |
| [nesgogg](https://github.com/retroenv/nesgo/tree/main/cmd/nesgogg) | NES Game Genie decoder/encoder |
check the README of each tool for a more detailed description and instructions on how to install and use them.
## Project layout
├─ cmd tools main directories
├─ docs documentation
├─ example/ NES Program examples in Golang
├─ internal/ internal compiler code
├─ pkg/ libraries used by different packages and tools
├─ pkg/neslib helper useful for writing NES programs in Golang