Right, I'm committing this session because I'm too cold and tired to go on.

It does not at present build (and it's going to take a good bit more work
before it does).
This commit is contained in:
Simon Brooke 2026-04-20 18:29:28 +01:00
parent f05d1af9d6
commit 6148d3699f
32 changed files with 364 additions and 309 deletions

View file

@ -12,6 +12,8 @@
#include <stdint.h>
#include "memory/pso4.h"
/**
* @brief An integer .
*
@ -23,6 +25,6 @@ struct integer_payload {
__int128_t value;
};
struct pso_pointer make_integer( int64_t value );
struct pso_pointer make_integer( struct pso4 *frame_pointer, int64_t value );
#endif