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 "object.h"

// Runs bytecode on a stack
void bytecode_run(struct object **stack, int arg_count);

#endif