├── .github └── workflows │ └── static.yml ├── .gitignore ├── README.md ├── classic ├── game │ ├── sm64.js │ └── sm64.wasm ├── index.html └── style.css ├── fonts ├── Mario64.ttf └── Super-Mario-64-DS.ttf ├── game ├── DynOS.1.0.config.txt ├── sm64.us.f3dex2e.js ├── sm64.us.f3dex2e.wasm └── sm64config.txt ├── images ├── SuperMario64.png ├── bg.jpg ├── ddrispznbdl51.png └── favicon.ico ├── index.html ├── screenshots ├── 1.png ├── 2.png ├── 3.png └── 4.png └── style.css /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/README.md -------------------------------------------------------------------------------- /classic/game/sm64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/classic/game/sm64.js -------------------------------------------------------------------------------- /classic/game/sm64.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/classic/game/sm64.wasm -------------------------------------------------------------------------------- /classic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/classic/index.html -------------------------------------------------------------------------------- /classic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/classic/style.css -------------------------------------------------------------------------------- /fonts/Mario64.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/fonts/Mario64.ttf -------------------------------------------------------------------------------- /fonts/Super-Mario-64-DS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/fonts/Super-Mario-64-DS.ttf -------------------------------------------------------------------------------- /game/DynOS.1.0.config.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/sm64.us.f3dex2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/game/sm64.us.f3dex2e.js -------------------------------------------------------------------------------- /game/sm64.us.f3dex2e.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/game/sm64.us.f3dex2e.wasm -------------------------------------------------------------------------------- /game/sm64config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/game/sm64config.txt -------------------------------------------------------------------------------- /images/SuperMario64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/images/SuperMario64.png -------------------------------------------------------------------------------- /images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/images/bg.jpg -------------------------------------------------------------------------------- /images/ddrispznbdl51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/images/ddrispznbdl51.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/index.html -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAn127/SM64-PC-Port-WebGL/HEAD/style.css --------------------------------------------------------------------------------