This website requires JavaScript.
Explore
Help
Sign In
koniifer
/
holey-bytes
Watch
1
Star
0
Fork
You've already forked holey-bytes
0
forked from
AbleOS/holey-bytes
Code
Pull requests
Activity
5055626968
holey-bytes
/
hbvm
/
src
/
lib.rs
7 lines
84 B
Rust
Raw
Normal View
History
Unescape
Escape
docs
2023-06-24 17:18:31 -05:00
#![
doc = include_str!(
"
../README.md
"
)
]
rework architecture and add a "compiler"
2023-05-09 03:36:37 -05:00
#![
no_std
]
docs
2023-06-24 17:18:31 -05:00
adding in environ calls
2023-04-22 16:06:33 -05:00
extern
crate
alloc
;
HoleyBytes, almost adhering the spec - 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)
2023-06-20 19:07:48 -05:00
pub
mod
vm
;
Copy permalink