add vmm mod

This commit is contained in:
mii443
2025-04-14 17:51:37 +09:00
parent 19253f1d95
commit c4f610b6a2
6 changed files with 47 additions and 0 deletions

21
Cargo.lock generated
View File

@ -72,6 +72,7 @@ dependencies = [
"spin 0.5.2",
"uart_16550",
"volatile 0.2.7",
"x86",
"x86_64 0.14.13",
]
@ -90,6 +91,15 @@ dependencies = [
"x86_64 0.15.2",
]
[[package]]
name = "raw-cpuid"
version = "10.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "rustversion"
version = "1.0.20"
@ -146,6 +156,17 @@ version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "442887c63f2c839b346c192d047a7c87e73d0689c9157b00b53dcc27dd5ea793"
[[package]]
name = "x86"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385"
dependencies = [
"bit_field",
"bitflags 1.3.2",
"raw-cpuid",
]
[[package]]
name = "x86_64"
version = "0.14.13"