moa icon indicating copy to clipboard operation
moa copied to clipboard

An emulator for various m68k and z80 based computers, written in Rust. Currently it has support for the Sega Genesis, TRS-80, and Computie (my own project), with Macintosh support in the works

Results 4 moa issues
Sort by recently updated
recently updated
newest added

This is the proof-of-concept using computie, since it only needs one peripheral and the m68k cpu, which was already rewritten and tested

Hello, first of all I really love this project. I use it to simulate/trace the program code of an old dmx light controller (MA LightCommander 12/2) which uses the MC68008,...

This PR reworks system so wrapping every device in `Device` is no longer needed. `Device` is now a type of `Rc` where `DynDevice` is `trait DynDevice: Any + 'static +...