Releases: dcas796/micro_6502
Releases · dcas796/micro_6502
v1.1.0
v1.0.0
Changelog:
- Changed implementation of
Emulator::new
to only accept aReadWritable
struct. - Now the bus is shared between the
Emulator
struct and theDecoder
struct. Emulator
will now read from0xfffc
and0xfffd
for the reset vector.- Replaced
Emulator::run_until_completion
toEmulator::run_until_break
. - Added software interrupts to stop the emulator.
- Changed the example program
examples/fibonacci.bin
to reflect the changes made to the emulator.