├── .gitignore ├── .gitmodules ├── README.md ├── demo.gif ├── go.mod ├── go.sum ├── index.html ├── public ├── controller.svg ├── game.js ├── mobilecheck.js └── nes.js └── server.go /.gitignore: -------------------------------------------------------------------------------- 1 | greasyphone 2 | roms/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/demo.gif -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/go.sum -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/index.html -------------------------------------------------------------------------------- /public/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/public/controller.svg -------------------------------------------------------------------------------- /public/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/public/game.js -------------------------------------------------------------------------------- /public/mobilecheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/public/mobilecheck.js -------------------------------------------------------------------------------- /public/nes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/public/nes.js -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olahol/greasyphone/HEAD/server.go --------------------------------------------------------------------------------