GDT and IDT in kernel space

Paging constructs completed, remap kernel before jumping to kmain
Panic will do a stack trace
Remove SSE from none target
This commit is contained in:
Jeremy Soller 2016-08-15 14:34:20 -06:00
parent 465363f0a1
commit cc8fe85e6a
18 changed files with 524 additions and 236 deletions

View file

@ -96,7 +96,8 @@ impl Frame {
PhysicalAddress::new(self.number * PAGE_SIZE)
}
fn clone(&self) -> Frame {
//TODO: Set private
pub fn clone(&self) -> Frame {
Frame {
number: self.number
}