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

@ -39,3 +39,8 @@ struct pso_pointer make_integer( struct pso_pointer frame_pointer,
return result;
}
struct pso_pointer acquire_integer( struct pso_pointer frame_pointer,
int64_t value ) {
return make_integer( frame_pointer, value );
}