Newer
Older
Tardis / lang / bytecode.h
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 John Watts and the LuminaSensum contributors

#ifndef BYTECODE_H
#define BYTECODE_H

#include "types.h"

// Runs bytecode
void bytecode_run(VmState state, const unsigned char *bytecode);

#endif