This website works better with JavaScript.
Home
Explore
Help
Sign In
er1n
/
sparkle
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
+src::arch::x86_64::interrupts
master
3moon
8 years ago
parent
30b7ebb71f
commit
f4a16c16cc
3 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
src/arch/x86_64/interrupts.rs
+1
-0
src/arch/x86_64/mod.rs
+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
;
Write
Preview
Loading…
Cancel
Save