lisp: replace sys_register with sys_alloc

Allows us to abstract allocation away, creating Lisps automatically.
This commit is contained in:
2026-02-12 05:48:48 +00:00
committed by oreodave
parent 6499a9dd6d
commit b51aaa3d65
2 changed files with 24 additions and 22 deletions

View File

@@ -75,7 +75,7 @@ typedef struct
} sys_t;
void sys_init(sys_t *);
void sys_register(sys_t *, lisp_t *);
lisp_t *sys_alloc(sys_t *, tag_t type);
void sys_free(sys_t *);
// Debugging function: provides total memory usage from system.