Skip to content

WeAreRust/Nes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nes

NES Emulator.

Running

As a prerequisite, you'll need SDL2.

$ brew install sdl2
$ bin/run.sh ./roms/color_test.nes

Notes

  • Currently, we are using the asm6502 crate for assembling the 6502 CPU assembly code set into machine code. This is used to make the tests more readable. In the future (mainly for fun), we may want to write our own assembler and disassembler for the 6502 CPU (asmdi-6502?)