Split up into pim-os, pim-vm and pim-isa crate

This commit is contained in:
2023-11-28 20:41:09 +01:00
parent 8f1c43defd
commit 54bf6bda11
22 changed files with 1078 additions and 109 deletions

15
pim-vm/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "pim-vm"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["staticlib"]
[dependencies]
cxx = "1.0.110"
env_logger = "0.10.1"
half = "2.3.1"
log = "0.4.20"
pim-isa = { path = "../pim-isa" }
serde_json = "1.0.108"