Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 852 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 852 Bytes

6502 emulator

This is an emulator of the MOS 6502 CPU.

currently supported features

  • support for all legal opcodes
  • support for all addressing modes
  • emulates cycle-correctness
  • easy integration with GUI monitor

possible future upgrades

  • illegal opcodes support
  • more monitor customization options
  • web integration

example

# clone the repository
git clone https://github.com/boki1/6502-emulator

# choose the example you would like to try out
cd 6502-emulator/examples/fib/src

# run it
cargo run

pictures