summaryrefslogtreecommitdiff
path: root/doc/0/index.md
diff options
context:
space:
mode:
authorTaylan Kammer <taylan.kammer@gmail.com>2026-08-16 10:01:12 +0200
committerTaylan Kammer <taylan.kammer@gmail.com>2026-08-16 10:01:12 +0200
commite26e81aa33dc1ecc2f26de26b1d420d288a28493 (patch)
treed0c906f3b6d504870a171f57709c6e912a3fc9c4 /doc/0/index.md
parent0e073b94c90b78ebe156adb27ec4456e86935d42 (diff)
Implemented meta allocator.
Diffstat (limited to 'doc/0/index.md')
-rw-r--r--doc/0/index.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/0/index.md b/doc/0/index.md
index 844729c..da707d2 100644
--- a/doc/0/index.md
+++ b/doc/0/index.md
@@ -1,7 +1,7 @@
# Chapter 0: Genesis
This chapter explains the core value representation of Zisp, and goes
-through the processes of parsing, decoding, running, and optionally
+through the processes of parsing, decoding, running, and optionally,
compiling code.
0. [Value](0-value.html)
@@ -32,3 +32,11 @@ compiling code.
the compilation of other modules, with various options, yielding
static or dynamic object files. These may be loaded immediately,
replacing the previously uncompiled module code in memory.
+
+## Appendices
+
++ Appendix A: [Memory](A-memory.html)
+
+ Zisp foregoes use of a platform-provided heap allocator as much as
+ possible, in favor of an efficient heap allocator specialized for
+ the implementation details of Zisp.