summaryrefslogtreecommitdiff
path: root/src/mods/mods.zig
AgeCommit message (Collapse)Author
2025-03-28Remove testingluccie-cmd
2025-03-27Fixing format.Ernesto Lanchares
Should we run zig fmt as a prehook? or maybe after pushing?
2025-03-27Add testing for wasm VMluccie-cmd
Signed-off-by: luccie-cmd <luccie@sideros.org>
2025-03-24Some progress on IR parsing.Ernesto Lanchares
Alhtough IR parsing is technically called while parsing, since we lack the hability to parse blocks or labels or if or any hard stuff really, it does not affect code parsing. However it is nice to have it there as zig compiles it :)
2025-03-23PROPOSAL: IRErnesto Lanchares
This is a proposal of a custom IR to run wasm. At the moment only `ir.zig` has some parts related to this IR. The idea of the IR is to be a subset of the one defined in wasm. There are some gaps (mostly in wasm instructions that have opcode 0xFC) but in wasm they don't use all of the opcodes for some reason so maybe we could try to utilize them and be a superset of wasm.