Add minimal abstract machine module
This commit is contained in:
17
lib/include/am.h
Normal file
17
lib/include/am.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef AM_H
|
||||
#define AM_H
|
||||
|
||||
#include "expr.h"
|
||||
|
||||
#define AM_STACK_SIZE 128U
|
||||
|
||||
typedef struct {
|
||||
expr_t *expr;
|
||||
expr_t **sp, *stack[AM_STACK_SIZE];
|
||||
} am_t;
|
||||
|
||||
void am_init(am_t *am);
|
||||
void am_push(am_t *am);
|
||||
void am_pop(am_t *am);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user