Browse Source

+src::arch::x86_64::interrupts

master
3moon 8 years ago
parent
commit
f4a16c16cc
3 changed files with 3 additions and 0 deletions
  1. +1
    -0
      src/arch/x86_64/interrupts.rs
  2. +1
    -0
      src/arch/x86_64/mod.rs
  3. +1
    -0
      src/lib.rs

+ 1
- 0
src/arch/x86_64/interrupts.rs View File

@ -0,0 +1 @@
//! Controls Sparkle's IDT.

+ 1
- 0
src/arch/x86_64/mod.rs View File

@ -2,6 +2,7 @@
pub mod device;
pub mod memory;
pub mod interrupts;
/// Turn on no-execute page protection.
pub fn enable_nxe_bit() {


+ 1
- 0
src/lib.rs View File

@ -36,6 +36,7 @@ use arch::x86_64;
use arch::x86_64::device::vga_console;
use arch::x86_64::memory;
use arch::x86_64::memory::FrameAllocator;
use arch::x86_64::interrupts;
use alloca::Allocator;
use alloc::boxed::Box;


Loading…
Cancel
Save