Skip to content
Snippets Groups Projects
Commit a0724c56 authored by wlott's avatar wlott
Browse files

Initial revision

parent 030b2ae8
No related branches found
No related tags found
No related merge requests found
#define CORE_PAGESIZE (4*1024)
#define CORE_MAGIC (('C' << 24) | ('O' << 16) | ('R' << 8) | 'E')
#define CORE_END 3840
#define CORE_NDIRECTORY 3861
#define CORE_VALIDATE 3845
#define CORE_VERSION 3860
#define CORE_MACHINE_STATE 3862
#define DYNAMIC_SPACE_ID (1)
#define STATIC_SPACE_ID (2)
#define READ_ONLY_SPACE_ID (3)
struct ndir_entry {
long identifier;
long nwords;
long data_page;
long address;
long page_count;
};
struct machine_state {
lispobj *csp;
lispobj *fp;
lispobj *bsp;
long flags;
long sigcontext_page;
long control_stack_page;
long binding_stack_page;
long number_stack_page;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment