Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 831 Bytes

README.md

File metadata and controls

45 lines (35 loc) · 831 Bytes

Nes

A emulator for NES (Nintendo Entertainiment System) made in Rust capable of run games like:
- PacMan
- Donkey Kong
- Super Mario Bros
- etc.


Installation

In Debian-based distros, run:

sudo apt install git cargo
git clone https://github.com/DevAles/nes.git
cd nes
chmod +x ./debian-install
./debian-install

In Arch-based distros, run:

yay -S git rust
git clone https://github.com/DevAles/nes.git
cd nes
chmod +x ./arch-install
./arch-install

Running

chmod +x ./start
./start

References

Some useful links that i use to build this emulator:
- 6502 Instruction Reference
- 6502 Assembly Reference