forked from AbleOS/holey-bytes
Erin
79c367dc18
- Changed instruction encoding to be faster to match on - Implemented all instructions defined in spec - Bytecode validation - Assembler - Implemented 5 level paging (based on SV57) - Implemented some degree of interrupts (though not fully adhering the spec yet)
16 lines
272 B
TOML
16 lines
272 B
TOML
[package]
|
|
name = "hbvm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[dependencies]
|
|
delegate = "0.9"
|
|
hashbrown = "0.13"
|
|
hbbytecode.path = "../hbbytecode"
|
|
log = "0.4"
|
|
paste = "1.0"
|
|
static_assertions = "1.0"
|