An open API service indexing awesome lists of open source software.

https://github.com/ciathefed/orion

Register based VM written in Zig
https://github.com/ciathefed/orion

register-based vm zig

Last synced: 10 months ago
JSON representation

Register based VM written in Zig

Awesome Lists containing this project

README

          

# Orion

64-bit register based VM written in [Zig](https://ziglang.org/)

## Usage

Build Orion

```shell
zig build
```

Compile an assembly program to bytecode

```shell
./zig-out/bin/orion build examples/hello.oasm
```

Execute the bytecode in the virtual machine

```shell
./zig-out/bin/orion run app.ob
```