From 617516b9495781e0f8ab659020c24e86c9e5a18c Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 15 Aug 2016 15:32:33 -0600 Subject: [PATCH] Move main to start --- arch/x86_64/src/lib.rs | 6 +++--- arch/x86_64/src/{main.rs => start.rs} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename arch/x86_64/src/{main.rs => start.rs} (100%) diff --git a/arch/x86_64/src/lib.rs b/arch/x86_64/src/lib.rs index 79128db..f4102db 100644 --- a/arch/x86_64/src/lib.rs +++ b/arch/x86_64/src/lib.rs @@ -89,9 +89,6 @@ pub mod io; /// Interrupt instructions pub mod interrupt; -/// Initialization and main function -pub mod main; - /// Memory management pub mod memory; @@ -104,5 +101,8 @@ pub mod panic; /// Serial driver and print! support pub mod serial; +/// Initialization and start function +pub mod start; + /// Task state segment pub mod tss; diff --git a/arch/x86_64/src/main.rs b/arch/x86_64/src/start.rs similarity index 100% rename from arch/x86_64/src/main.rs rename to arch/x86_64/src/start.rs