@@ -1,5 +1,8 @@
#include "am.h"
#include "env.h"
#include "store.h"
#include <assert.h>
#include <string.h>
@@ -7,6 +10,8 @@ void am_init(am_t *am)
{
memset(am, 0, sizeof(am_t));
am->sp = am->stack + AM_STACK_SIZE - 1;
store_init(am);
env_init(am);
}
void am_push(am_t *am)
The note is not visible to the blocked user.