Enable SSE and FPU

This commit is contained in:
Jeremy Soller
2016-09-22 16:14:45 -06:00
parent 2e9697353c
commit 35ad65bbda
5 changed files with 34 additions and 2 deletions
+3
View File
@@ -25,6 +25,8 @@ pub struct Context {
pub running: bool,
/// The architecture specific context
pub arch: arch::context::Context,
/// Kernel FX
pub kfx: Option<Box<[u8]>>,
/// Kernel stack
pub kstack: Option<Box<[u8]>>,
/// Executable image
@@ -49,6 +51,7 @@ impl Context {
status: Status::Blocked,
running: false,
arch: arch::context::Context::new(),
kfx: None,
kstack: None,
image: Vec::new(),
heap: None,