systems · sub-star
neon_vm
a small stack-based virtual machine — bytecode in, execution out.
readme
A virtual machine written in native C that executes densely packed binary opcodes through a stack-based execution pipeline, echoing how real CPU architectures fetch, decode, and execute. It defines its own instruction set and runs compiled bytecode against it.
signal log
- custom instruction set, executed on a stack machine with its own fetch/decode/execute loop.
- opcodes packed densely to keep the dispatch loop tight.
- [ add what you run on it — a toy language? a hand-written assembler? ]
built with
C
view repository →