Huge amount of work. Does not even nearly compile, but it's nearer.

This commit is contained in:
Simon Brooke 2026-03-28 23:46:14 +00:00
parent 1afb1b9fad
commit cae27731b7
31 changed files with 407 additions and 96 deletions

View file

@ -22,6 +22,7 @@
* @brief Tag for string of characters, organised as a linked list.
*/
#define STRINGTAG "STR"
#define STRINGTV 5395539
/**
* @brief payload of a string cell.
@ -36,7 +37,7 @@ struct string_payload {
/** a hash of the string value, computed at store time. */
uint32_t hash;
/** the remainder of the string following this character. */
struct cons_pointer cdr;
struct pso_pointer cdr;
};
#endif