view src/include/context.h @ 101:8987cf13d5bb

Add Allocate macro
author innparusu
date Wed, 02 Mar 2016 19:23:00 +0900
parents a765eb7f3b7c
children
line wrap: on
line source

typedef struct Context_st {
    void* ds;
    void* mds;
    void* ds_heap;
    void* mds_heap;
    __code (*next)();
    void* head;
} Context;