Enable SSE and FPU

This commit is contained in:
Jeremy Soller 2016-09-22 16:14:45 -06:00
parent e3df5194fe
commit bc1b503d25
7 changed files with 37 additions and 4 deletions

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,