Added character as a first class object. Stepped through a run; it all works.

This commit is contained in:
Simon Brooke 2026-03-30 13:29:26 +01:00
parent a8b4a6e69d
commit e3f922a8bf
5 changed files with 52 additions and 26 deletions

View file

@ -10,7 +10,9 @@
#ifndef __psse_payloads_cons_h
#define __psse_payloads_cons_h
#include <ctype.h>
#include <stdint.h>
#include <stdlib.h>
#include "memory/pointer.h"
@ -26,7 +28,7 @@
* convenience, 14Bn years before 1st Jan 1970 (the UNIX epoch))
*/
struct time_payload {
unsigned __int128_t value;
unsigned __int128 value;
};
#endif