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

@ -11,12 +11,13 @@
#ifndef __psse_memory_node_h
#define __psse_memory_node_h
#include <stdint.h>
/**
* @brief The index of this node in the hypercube.
*
*/
extern int node_index;
extern uint32_t node_index;
/**
* @brief The canonical `nil` pointer
@ -30,4 +31,6 @@ extern struct pso_pointer nil;
*/
extern struct pso_pointer t;
struct pso_pointer initialise_node( uint32_t index );
#endif