diff options
| author | Tianhao Wang <wth@riseup.net> | 2024-02-25 04:55:09 +0100 |
|---|---|---|
| committer | Tianhao Wang <shrik3@mailbox.org> | 2024-06-11 15:13:38 +0200 |
| commit | dbefd9336cc808e76f8e9d8d238f5a348d14604a (patch) | |
| tree | c373589d1492141da6caa1c0668f8cd3eeddac80 /src/lib.rs | |
| parent | 9f7d1bf474ac3e3b1c658bf2167afbf056e99c58 (diff) | |
add mm and ds modules (yet empty)
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,9 +3,11 @@ #![no_std] #![no_main] mod arch; +mod defs; +mod ds; mod io; mod machine; -mod defs; +mod mm; use arch::x86_64::interrupt::pic_8259; use arch::x86_64::interrupt::pic_8259::PicDeviceInt; use core::panic::PanicInfo; @@ -28,8 +30,6 @@ pub extern "C" fn _entry() -> ! { println!(" (,-.`._,'( |\\`-/|"); println!(" `-.-' \\ )-`( , o o)"); println!(" `- \\`_`\"'-"); - println!("it works!"); - // testing interrupt/PIC // pic_8259::allow(PicDeviceInt::KEYBOARD); // interrupt::interrupt_enable(); |
