6502 CPU emulator and debugger
Go to file
2020-03-18 08:44:12 -05:00
src cpu: BPL insn, Makefile: cleaned, updated 2020-03-18 08:44:12 -05:00
.travis.yml .travis.yml: install libsdl2-dev for test ROMs 2020-03-14 21:42:54 -05:00
Makefile 65db: renamed for clarity, Makefile/Rakefile: updated build environment 2020-03-15 09:16:59 -05:00
Rakefile config.h: moved 65db specific code to 65db.h 2020-03-15 09:34:41 -05:00
readme.md readme: update 2020-03-15 09:35:42 -05:00
TODO TODO: updated, priority shifted from CPU 2020-03-14 17:57:12 -05:00

Build Status

65

6502 (NES) emulator

A 6502 CPU emulator/simulator with ncurses UI. Includes implementations using video display using either curses or SDL2.

Usage

./65 FILE.NES

./65sdl FILE.NES

Building

Dependencies:

ncurses SDL2

To build using GNUMake (Linux/Cygwin):

make

To build using Ruby rake

rake

To run simple included tests:

make
./bin/65 test/<TEST ROM FILENAME>

Debugger key bindings:

s.........Step into instruction

g.........Goto offset

G.........Toggle follow (to follow CPU PC)

j.........Scroll down through hexdump

k.........Scroll up through hexdump

/.........Search for octet

q.........Quit program