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
- Host: GitHub
- URL: https://github.com/ciathefed/orion
- Owner: ciathefed
- License: mit
- Created: 2025-04-26T20:47:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-26T22:35:20.000Z (about 1 year ago)
- Last Synced: 2025-04-26T23:24:48.374Z (about 1 year ago)
- Topics: register-based, vm, zig
- Language: Zig
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```