shithub: gpufs

ref: d128c76aca17cf3b340c48175d8cdfaaeff40657
dir: /vm.h/

View raw version
typedef struct Frame Frame;
struct Frame {
	u32int *pc;
	Frame *next;
};

void vmrun(u32int *ptr);
void runstack(u32int *ptr);
void retstack(void);