No description
  • Common Lisp 100%
Find a file
2026-08-11 17:35:20 +03:00
src added some tests 2026-08-11 17:35:20 +03:00
tests added some tests 2026-08-11 17:35:20 +03:00
cl-intel4004.asd added some tests 2026-08-11 17:35:20 +03:00
COPYING init repo from my old code 2026-08-07 22:08:42 +03:00
README.org add usage to readme 2026-08-11 16:37:52 +03:00

cl-intel4004

This is an emulator for Intel 4004.

The purpose of this emulator is to test puzzle solutions in CodeAbbey. The site has a similar implementation which tests user submitted solutions, along with a description of Intel 4004 in the wiki. This emulator is based on this wiki description.

Usage

Assuming you've downloaded it and put it somewhere asdf-loadable:

  (asdf:load-system :cl-intel4004)
  (in-package :cl-intel4004.core)

  ;;;; Initialize 3rd register to 12 and run program
  (run-program "my-file.asm" #(0 0 12))