Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ushitora-anqou/aqboy
Yet another Game Boy emulator written in Go.
https://github.com/ushitora-anqou/aqboy
Last synced: about 1 month ago
JSON representation
Yet another Game Boy emulator written in Go.
- Host: GitHub
- URL: https://github.com/ushitora-anqou/aqboy
- Owner: ushitora-anqou
- License: mit
- Created: 2022-02-05T10:38:08.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-14T03:58:07.000Z (almost 3 years ago)
- Last Synced: 2024-06-21T20:04:16.494Z (7 months ago)
- Language: Go
- Homepage:
- Size: 84 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AQboy
Yet another Game Boy emulator written in Go.
## Build and Run
### SDL2
go run -tags sdl2 . ROM-FILE-PATH
### Ebiten (Native)
go run -tags ebiten . ROM-FILE-PATH
### Ebiten+Wasm
GOOS=js GOARCH=wasm go build -tags ebiten,wasm -o aqboy.wasm github.com/ushitora-anqou/aqboy