1
0
Fork 0
undar-lang-old/src/tools/assembler/assembler.h

10 lines
182 B
C

#ifndef UNDAR_IR_ASSEMBLER_H
#define UNDAR_IR_ASSEMBLER_H
#include "../../vm/common.h"
#include "../../vm/opcodes.h"
#include "lexer.h"
void assemble(VM *vm, char *source);
#endif