aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-08-17 22:22:56 -0700
committerChristian Cunningham <cc@localhost>2022-08-17 22:22:56 -0700
commit5494645e2607706655f8e3466f3ec858db303061 (patch)
tree6f56fd19eca7cefa65fb083a566a0a95033892ee /src/main.rs
parent91d0ae783e51062f77b120b05c97cd352b9b86d5 (diff)
Fix template
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/main.rs b/src/main.rs
deleted file mode 100644
index 9697ca8..0000000
--- a/src/main.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-//! Kernel Code
-
-#![allow(non_snake_case)]
-#![allow(clippy::upper_case_acronyms,dead_code)]
-#![feature(format_args_nl)]
-#![feature(panic_info_message)]
-#![feature(trait_alias)]
-#![feature(exclusive_range_pattern)]
-#![no_main]
-#![no_std]
-
-mod cpu;
-mod panic_wait;
-mod uart;
-use crate::uart::*;
-
-/// Initialization Code
-unsafe fn kernel_init() -> ! {
- uart_init();
-
- kernel_main()
-}
-
-fn kernel_main() -> ! {
- write_char(b'a');
- write_char(b'b');
- loop {
- }
-}