diff options
| author | Tianhao Wang <shrik3@mailbox.org> | 2024-05-30 09:37:57 +0200 |
|---|---|---|
| committer | Tianhao Wang <shrik3@mailbox.org> | 2024-06-11 15:17:11 +0200 |
| commit | 2335398b704e1fb2fa561f7dd115f89c69c58bb7 (patch) | |
| tree | d2721d77e4f4e6f1aa9c65f7202b1c1ce94b86e2 /src/lib.rs | |
| parent | 714e69d281e8b61d4214cea1c7e0a33a2f9cde71 (diff) | |
mm: add basic paging infra from x86_64 crate
the x86_64 crate is pretty solid and has a permissive license
(Apache/MIT), but I want to make this myself in the future to
"experience" the unsafe rust further....Also it has too many
abstractions, which is justified as a library, but not ideal for a from
sctrach toy OS as it hides the lower end.
Signed-off-by: Tianhao Wang <shrik3@mailbox.org>
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2,6 +2,7 @@ #![allow(unused_imports)] #![no_std] #![no_main] +#![feature(const_option)] mod arch; mod defs; mod ds; |
