mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
adba6b26dc
- Boolean type (no support in lexer yet) - Conditionals - Defines (only work correctly at top level) - More core builtins (apply, cons, car, cdr) - Variable-argument functions - Incremental garbage collection - Garbage collection fixes - Other misc bugs fixed
19 lines
304 B
Objective-C
19 lines
304 B
Objective-C
#ifndef __state_h
|
|
#define __state_h
|
|
|
|
#include "Instruction.h"
|
|
#include "Frame.h"
|
|
|
|
@class Continuation;
|
|
|
|
struct state_s = {
|
|
instruction_t [] program;
|
|
integer pc;
|
|
Frame literals, env;
|
|
SchemeObject stack;
|
|
Continuation cont;
|
|
Procedure proc;
|
|
};
|
|
|
|
typedef struct state_s state_t;
|
|
#endif
|