2021-12-21 01:18:22 +01:00
|
|
|
#ifndef __VM_H__
|
|
|
|
#define __VM_H__
|
|
|
|
|
2021-12-22 17:23:24 +01:00
|
|
|
#include "ir.h"
|
|
|
|
|
2021-12-29 13:27:58 +01:00
|
|
|
void run(IRList *ir, const BuiltinFunc *builtin_funcs);
|
2021-12-22 17:23:24 +01:00
|
|
|
|
2021-12-21 01:18:22 +01:00
|
|
|
#endif /* VM_H */
|