1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-06-15 05:29:28 +00:00
Experimental 65C02 machine code interpreter/emulator/disassembler.
Go to file
2018-04-06 14:26:00 +02:00
examples Load the example at 0xC000, stop the emulator after running. 2018-04-06 14:26:00 +02:00
res Add logo. 2018-03-26 16:28:38 +02:00
src Simplify handling ciritcal emulation errors. 2018-04-01 21:40:49 +02:00
test Fix zero page wrap for indexed indirect mode. 2018-03-31 15:03:22 +02:00
.gitignore Ignore .DS_Store 2017-01-23 13:47:22 +01:00
LICENSE Initial commit 2017-01-16 19:33:02 +01:00
README.md Bring README up to date. 2018-03-26 16:45:07 +02:00

rk65c02

65C02 code interpreter/emulator/disassembler.

rk65c02 logo

This project is a work in progress. The rk65c02 is a library implementing an emulator of WDC 65C02S CPU. It does not aim to be cycle-exact emulator, but otherwise it tries to mimic behaviour of 65C02S as close as possible. Currently, the following features are implemented:

  • Emulation of all opcodes, including WDC extensions and BCD mode.
  • 16-bit address space.
  • Support for interrupts.

The only external dependencies (besides standard C library) are Boehm GC and uthash. On Fedora these can be installed with gc-devel and uthash-devel packages.

If you want to build tests, kyua quality assurance toolkit, atf testing framework and vasm assembler are also necessary.