quakeforge/ruamoko/scheme/state.h
Brian Koropoff adba6b26dc Scheme updates:
- 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
2005-05-06 23:25:06 +00:00

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