mirror of
https://github.com/irmen/ksim65.git
synced 2024-11-16 16:04:53 +00:00
Kotlin 6502/65C02 microprocessor simulator
.idea | ||
gradle/wrapper | ||
src | ||
.gitignore | ||
.travis.yml | ||
build.gradle.kts | ||
c64.png | ||
ehbasic.png | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
LICENSE | ||
README.md | ||
settings.gradle.kts |
KSim65 - Kotlin/JVM 6502/65C02 microprocessor simulator
Written by Irmen de Jong (irmen@razorvine.net)
Software license: MIT, see file LICENSE
This is a Kotlin/JVM library that simulates the 8-bit 6502 and 65C02 microprocessors, which became very popular in the the early 1980's.
Properties of this simulator:
- Written in Kotlin. It is low-level code, but hopefully still readable :-)
- Designed to simulate hardware components (bus, cpu, memory, i/o controllers)
- IRQ and NMI simulation
- Aims to be clock cycle-precise (not yet 100% correct right now)
- Aims to implements all 6502 and 65c02 instructions, including the 'illegal' 6502 instructions (not yet done)
- correct BCD mode for adc/sbc instructions on both cpu types
- passes several extensive unit test suites that verify instruction and cpu flags behavior
- maximum simulated performance is a 6502 running at ~100 Mhz (on my machine)
Documentation
Still to be written. For now, use the source ;-)
Virtual machine examples
Three virtual example machines are included.
The default one starts with gradle run
or run the ksim64vm
command.
There's another one ehBasicMain
that is configured to run the "enhanced 6502 basic" ROM:
Finally there is a fairly functional C64 emulator running the actual roms (not included, but can be easily found elsewhere for example with the Vice emulator):