Move main to start

This commit is contained in:
Jeremy Soller 2016-08-15 15:32:33 -06:00
parent 0c5221425b
commit 617516b949
2 changed files with 3 additions and 3 deletions

View file

@ -89,9 +89,6 @@ pub mod io;
/// Interrupt instructions /// Interrupt instructions
pub mod interrupt; pub mod interrupt;
/// Initialization and main function
pub mod main;
/// Memory management /// Memory management
pub mod memory; pub mod memory;
@ -104,5 +101,8 @@ pub mod panic;
/// Serial driver and print! support /// Serial driver and print! support
pub mod serial; pub mod serial;
/// Initialization and start function
pub mod start;
/// Task state segment /// Task state segment
pub mod tss; pub mod tss;