A virtual machine written in Rust
Go to file
coolcoder613eb e92fbb020e commenting main.rs 2024-03-21 17:55:36 +11:00
src commenting main.rs 2024-03-21 17:55:36 +11:00
.gitignore Create .gitignore 2024-03-17 13:31:44 +11:00
Cargo.lock start assembler 2024-03-17 13:31:44 +11:00
Cargo.toml start assembler 2024-03-17 13:31:44 +11:00
LICENSE Initial commit 2024-03-17 13:24:58 +11:00
README.md add emitting, start commenting 2024-03-20 18:40:36 +11:00
test.asm add emitting, start commenting 2024-03-20 18:40:36 +11:00

README.md

oxvm

A virtual machine written in Rust

binary format

const MAGIC_NUMBER: u16 = 0xBADFAD;
struct Executable {
    magic_number: u16
    load_addr: u32
}