diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/kernel.rs | 6 | ||||
| -rw-r--r-- | src/mem.rs | 2 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/src/kernel.rs b/src/kernel.rs index 5c52135..c476e8b 100644 --- a/src/kernel.rs +++ b/src/kernel.rs @@ -48,14 +48,14 @@ unsafe fn kernel_init() -> ! {  ///  /// TODO: Figure out what to do here  fn kernel_main() -> ! { -	println!("Initialized \x1b[92m{}\x1b[0m \x1b[93m{}\x1b[0m!", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")); -	println!("{}", env!("CARGO_PKG_AUTHORS")); +	println!("\x1b[91mInitialized\x1b[0m \x1b[92m{}\x1b[0m \x1b[93mv{}\x1b[0m", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")); +	println!("\x1b[94mAuthors:\x1b[0m \x1b[95m{}\x1b[0m", env!("CARGO_PKG_AUTHORS"));  	println!("Testing out allocations!");  	{  		let a: Box<u8> = Box::new(u8::MAX);  		let b: Box<u8> = Box::new(5);  		println!("{:?} {:?}", a, b);  	} -	println!("Characters written to UART: {}", console().chars_written()); +	println!("Characters written to UART: \x1b[91m{}\x1b[0m", console().chars_written());  	loop { }  } @@ -1,4 +1,4 @@ -//! Memory crate +//! # Memory crate  //!  //! Provides the Allocator for the OS.  pub mod alloc; | 
