diff options
| author | Taylan Kammer <taylan.kammer@gmail.com> | 2026-08-16 10:01:12 +0200 |
|---|---|---|
| committer | Taylan Kammer <taylan.kammer@gmail.com> | 2026-08-16 10:01:12 +0200 |
| commit | e26e81aa33dc1ecc2f26de26b1d420d288a28493 (patch) | |
| tree | d0c906f3b6d504870a171f57709c6e912a3fc9c4 /doc/0 | |
| parent | 0e073b94c90b78ebe156adb27ec4456e86935d42 (diff) | |
Implemented meta allocator.
Diffstat (limited to 'doc/0')
| -rw-r--r-- | doc/0/index.md | 10 |
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. |
