• C 76.3%
  • NewLisp 23.3%
  • Shell 0.4%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-13 18:10:57 -07:00
arch break up all the things into components 2026-09-10 00:38:24 -07:00
.gitignore break up all the things into components 2026-09-10 00:38:24 -07:00
build update naming to be more accurate, add exit 2026-09-13 15:56:56 -07:00
io.h break up all the things into components 2026-09-10 00:38:24 -07:00
libc.c break up all the things into components 2026-09-10 00:38:24 -07:00
libc.h break up all the things into components 2026-09-10 00:38:24 -07:00
LICENSE Add files, attribute tinylisp 2026-09-09 20:12:57 -07:00
README.md Update README.md 2026-09-13 18:10:57 -07:00
tinylisp-stdlib.lisp break up all the things into components 2026-09-10 00:38:24 -07:00
vm.c update naming to be more accurate, add exit 2026-09-13 15:56:56 -07:00
vm.h update naming to be more accurate, add exit 2026-09-13 15:56:56 -07:00

tinylisp-nn

This is a fork of tinylisp that should allow it to run on more hardware.

Changes compared to tinylisp:

  1. removed c standard library from core system
  2. integers instead of doubles (remove IEEE 754 dependency)
  3. tagged unions instead of NaN boxed doubles
  4. no intermediary string buffer, so atoms can be any arbitrary size (until you hit the size limit)
  5. moved I/O to architecture specific implementations