It compiles. It runs. Nothing works, but it also doesn't crash. Victory!

This commit is contained in:
Simon Brooke 2026-04-23 11:50:30 +01:00
parent 8d2acbeb0f
commit aa0d60bbed
20 changed files with 390 additions and 244 deletions

View file

@ -1,14 +1,14 @@
/**
* payloads/cons.h
* payloads/time.h
*
* A cons cell.
* A timee record.
*
* (c) 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
*/
#ifndef __psse_payloads_cons_h
#define __psse_payloads_cons_h
#ifndef __psse_payloads_time_h
#define __psse_payloads_time_h
#include <ctype.h>
#include <stdint.h>
@ -31,4 +31,7 @@ struct time_payload {
unsigned __int128 value;
};
struct pso_pointer make_time( struct pso_pointer stack_frame,
struct pso_pointer time );
#endif