I think read will now read integers and symbols, but it's untested.
Everything compiles.
This commit is contained in:
parent
cc8e96eda4
commit
9eb0d3c5a0
28 changed files with 594 additions and 293 deletions
17
src/c/memory/pso4.c
Normal file
17
src/c/memory/pso4.c
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* memory/pso4.h
|
||||
*
|
||||
* Paged space object of size class 4, 16 words total, 14 words payload.
|
||||
*
|
||||
* (c) 2026 Simon Brooke <simon@journeyman.cc>
|
||||
* Licensed under GPL version 2.0, or, at your option, any later version.
|
||||
*/
|
||||
|
||||
#include "memory/pointer.h"
|
||||
#include "memory/pso.h"
|
||||
#include "memory/pso2.h"
|
||||
#include "memory/pso4.h"
|
||||
|
||||
struct pso4* pointer_to_pso4( struct pso_pointer p) {
|
||||
struct pso4* result = (struct pso4*)pointer_to_object_of_size_class( p, 4);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue