cl-6502 icon indicating copy to clipboard operation
cl-6502 copied to clipboard

A 6502 emulator in Lisp.

Results 5 cl-6502 issues
Sort by recently updated
recently updated
newest added

Luke Gorrie's "Readable Programs" link in README.md is broken. Now lives here: http://lukego.github.io/blog/2012/10/24/readable-programs/

Really need at least a few or even one example. You casually talk about it but it does not work based on what you said. Please include some examples how...

Hi. I want to order Ben Eaters 6502 computer breadboard kit and learn a bit more. I love Lisp and was looking for a compiler, implementation, or some set of...

https://github.com/kingcons/cl-6502/blob/46628d6e152112c3e8bd54786440af1e022b3c5d/cl-6502.asd#L12 The file "addressing" needs to be moved after the file "cpu", because it uses code from "cpu". In particular, `(incf (cpu-cc cpu))` requires **cpu-cc** to already be defined to...

https://github.com/kingcons/cl-6502/blob/46628d6e152112c3e8bd54786440af1e022b3c5d/src/conditions.lisp#L3 The conditions in this file are defined without a parenty-type, they are direct subclass of **condition**. That means that error handlers (for example **ignore-errors**), which expect a condition of...