Compiles again, now with bootstrap-layer print implemented, but not yet tested.

To get print implemented, I also had to implement a lot of other things.
This commit is contained in:
Simon Brooke 2026-03-31 15:05:44 +01:00
parent 2b22780ccf
commit 364d7d2c7b
23 changed files with 1616 additions and 57 deletions

View file

@ -9,7 +9,6 @@
#ifndef __psse_payloads_exception_h
#define __psse_payloads_exception_h
#include <stdbool.h>
#include "memory/pointer.h"
@ -25,4 +24,6 @@ struct exception_payload {
struct pso_pointer cause;
};
struct pso_pointer make_exception( struct pso_pointer message, struct pso_pointer frame_pointer, struct pso_pointer cause);
#endif