post-scarcity/src/c/ops
Simon Brooke 364d7d2c7b Compiles again, now with bootstrap-layer print implemented, but not yet tested.
To get print implemented, I also had to implement a lot of other things.
2026-03-31 15:05:44 +01:00
..
eq.c My monster, it not only compiles, it now runs! 2026-03-30 11:52:41 +01:00
eq.h Much more progress, still doesn't compile. 2026-03-30 09:35:34 +01:00
eval.c Compiles again, now with bootstrap-layer print implemented, but not yet tested. 2026-03-31 15:05:44 +01:00
README.md Lots more code written, and I think most of it's OK; but it doesn't compile yet. 2026-03-26 09:01:46 +00:00
repl.h My monster, it not only compiles, it now runs! 2026-03-30 11:52:41 +01:00
stack_ops.c My monster, it not only compiles, it now runs! 2026-03-30 11:52:41 +01:00
stack_ops.h My monster, it not only compiles, it now runs! 2026-03-30 11:52:41 +01:00
string_ops.c Compiles again, now with bootstrap-layer print implemented, but not yet tested. 2026-03-31 15:05:44 +01:00
string_ops.h Compiles again, now with bootstrap-layer print implemented, but not yet tested. 2026-03-31 15:05:44 +01:00
truth.c My monster, it not only compiles, it now runs! 2026-03-30 11:52:41 +01:00
truth.h My monster, it not only compiles, it now runs! 2026-03-30 11:52:41 +01:00

README: PSSE substrate operations

This folder/pseudo-package is for things which implement basic Lisp functions. These will be the functions which make up the :bootstrap and :substrate packages in Lisp.

For each basic function the intention is that there should be one .c file (and normally one .h file as well). This file will provide one version of the function with Lisp calling conventions, called lisp_xxxx, and one with C calling conventions, called xxxx. It does not matter whether the lisp version calls the C version or vice versa, but one should call the other so there are not two different versions of the logic.

Substrate I/O functions will not be provided in this pseudo-package but in io. Substrate arithmetic functions will not be provided in this pseudo-package but in arith.