Update wasm page text
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 33s

This commit is contained in:
2026-04-09 07:41:31 -05:00
parent 309cc9c2df
commit ce3b197d52
2 changed files with 18 additions and 1 deletions

2
.gitignore vendored
View File

@@ -2,5 +2,5 @@
*.nes
*.zip
*.dmp
/wasm/
!/wasm/wasm.html
/wasm/*

View File

@@ -38,6 +38,23 @@
<button id="load">Load ROM</button>
</div>
</div>
<p>
A partially implemented NES emulator, implemented in Rust. It's compiled to web assembly and hosted
here for your enjoyment.
</p>
<p>
<a href="https://gitea.loadingm.xyz/the10thwiz/nes-emu">Source is available for those interested.</a>
</p>
<p>
The APU isn't fully emulated yet, and many of the features implemented don't work properly yet. Audio
is disabled.
<!-- Run `window.play_audio = true;` in the dev console to enable audio -->
</p>
<p>
This emulator has been primarily tested with Super Mario Bros, although the game hasn't been fully tested.
Very few mapper chips have actually been implemented, so it's quite likely many games will fail to
load at all.
</p>
<script type="module">
import init from "./wasm.js";