aboutsummaryrefslogtreecommitdiff
path: root/src/vm/runner/runner.h
blob: e59b44779452f8a8a1319cd9122a952778fa4013 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <compiler/code_generator/code_generator.h>

extern bool runner(Instructions instructions);

extern bool runInstruction(Instruction instruction, void ***restrict stack,
                           size_t *restrict stack_size,
                           size_t *restrict stack_inserted);