Compare commits

...

3 Commits

Author SHA1 Message Date
Greg Shuflin 4d7aa79434 Have panic handler print message 2022-02-19 01:01:32 -08:00
Greg Shuflin 1cfd133cb2 Run cargo fmt 2022-02-19 01:00:56 -08:00
Greg Shuflin 5c0ea91e65 Add back code for writing to screen 2022-02-19 01:00:27 -08:00
4 changed files with 137 additions and 87 deletions

41
Cargo.lock generated
View File

@ -8,9 +8,50 @@ version = "0.9.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a62c8f6168cd106687ee36a2b71a46c4144d73399f72814104d33094b8092fd2" checksum = "a62c8f6168cd106687ee36a2b71a46c4144d73399f72814104d33094b8092fd2"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
dependencies = [
"spin 0.5.2",
]
[[package]]
name = "lock_api"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b"
dependencies = [
"scopeguard",
]
[[package]] [[package]]
name = "rustos" name = "rustos"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"bootloader", "bootloader",
"lazy_static",
"spin 0.9.2",
]
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spin"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "511254be0c5bcf062b019a6c89c01a664aa359ded62f78aa72c6fc137c0590e5"
dependencies = [
"lock_api",
] ]

View File

@ -7,4 +7,9 @@ edition = "2021"
[dependencies] [dependencies]
#bootloader = "0.10.12" #bootloader = "0.10.12"
bootloader = "0.9.8" bootloader = "0.9.8"
spin = "0.9.2"
[dependencies.lazy_static]
version = "1.4.0"
features = ["spin_no_std"]

View File

@ -1,37 +1,20 @@
//#![feature(abi_x86_interrupt, asm)] // #![feature(abi_x86_interrupt, asm)]
#![no_std] #![no_std]
#![no_main] #![no_main]
/*
#[macro_use] #[macro_use]
mod vga_buffer; mod vga_buffer;
*/
use core::panic::PanicInfo; use core::panic::PanicInfo;
#[panic_handler] #[panic_handler]
fn panic(_info: &PanicInfo) -> ! { fn panic(info: &PanicInfo) -> ! {
println!("{info}");
loop {} loop {}
} }
static GAMARJOBA: &[u8] = b"Gamarjoba, MVNDE!";
#[no_mangle] #[no_mangle]
pub extern "C" fn _start() -> ! { pub extern "C" fn _start() -> ! {
let vga_buffer = 0xb8000 as *mut u8; println!("Gamarjoba, munde!");
for (i, &byte) in GAMARJOBA.iter().enumerate() {
let i = i as isize;
unsafe {
*vga_buffer.offset(i * 2) = byte;
*vga_buffer.offset(i * 2 + 1) = 0xd;
}
}
loop {} loop {}
} }

View File

@ -1,8 +1,6 @@
use volatile::Volatile;
use core::fmt; use core::fmt;
use spin::Mutex;
use lazy_static::lazy_static; use lazy_static::lazy_static;
use spin::Mutex;
#[macro_export] #[macro_export]
macro_rules! print { macro_rules! print {
@ -18,10 +16,13 @@ macro_rules! println {
#[doc(hidden)] #[doc(hidden)]
pub fn _print(args: fmt::Arguments) { pub fn _print(args: fmt::Arguments) {
use core::fmt::Write; use core::fmt::Write;
WRITER.lock().write_fmt(args).unwrap();
/*
use x86_64::instructions::interrupts; use x86_64::instructions::interrupts;
interrupts::without_interrupts(|| { interrupts::without_interrupts(|| {
WRITER.lock().write_fmt(args).unwrap(); WRITER.lock().write_fmt(args).unwrap();
}); });
*/
} }
#[allow(dead_code)] #[allow(dead_code)]
@ -48,97 +49,117 @@ pub enum Color {
#[derive(Debug, Clone, Copy, PartialEq, Eq)] #[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[repr(transparent)] #[repr(transparent)]
struct ColorCode(u8); pub struct ColorCode(u8);
impl ColorCode { impl ColorCode {
fn new(foreground: Color, background: Color) -> ColorCode { pub fn new(foreground: Color, background: Color) -> ColorCode {
ColorCode((background as u8) << 4 | (foreground as u8)) ColorCode((background as u8) << 4 | (foreground as u8))
} }
} }
#[derive(Debug, Clone, Copy, PartialEq, Eq)] #[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[repr(C)] #[repr(C)]
struct ScreenChar { struct ScreenChar {
ascii_char: u8, ascii_char: u8,
color_code: ColorCode, color_code: ColorCode,
} }
const BUFFER_WIDTH: usize = 80; const BUFFER_WIDTH: usize = 80;
const BUFFER_HEIGHT: usize = 25; const BUFFER_HEIGHT: usize = 25;
#[repr(transparent)] #[repr(transparent)]
struct Buffer { pub struct Buffer {
chars: [[Volatile<ScreenChar>; BUFFER_WIDTH]; BUFFER_HEIGHT], chars: [[ScreenChar; BUFFER_WIDTH]; BUFFER_HEIGHT],
} }
pub struct Writer { pub struct Writer {
column_position: usize, column_position: usize,
color_code: ColorCode, color_code: ColorCode,
buffer: &'static mut Buffer, buffer: &'static mut Buffer,
} }
impl Writer { impl Writer {
pub fn write_string(&mut self, s: &str) { pub fn new(color_code: ColorCode) -> Self {
for byte in s.bytes() { Writer {
match byte { column_position: 0,
0x20..=0x7e | b'\n' => self.write_byte(byte), color_code,
_ => self.write_byte(0xfe), // a ■ buffer: unsafe { &mut *(0xb8000 as *mut Buffer) },
} }
} }
} pub fn write_string(&mut self, s: &str) {
for byte in s.bytes() {
pub fn write_byte(&mut self, byte: u8) { match byte {
match byte { 0x20..=0x7e | b'\n' => self.write_byte(byte),
b'\n' => self.new_line(), _ => self.write_byte(0xfe), // 0xfe is the character ■
byte => { }
if self.column_position >= BUFFER_WIDTH {
self.new_line();
} }
let row = BUFFER_HEIGHT - 1;
let col = self.column_position;
let color_code = self.color_code;
self.buffer.chars[row][col].write(ScreenChar {
ascii_char: byte, color_code,
});
self.column_position += 1;
}
} }
}
fn new_line(&mut self) { pub fn write_byte(&mut self, byte: u8) {
for row in 1..BUFFER_HEIGHT { match byte {
for col in 0..BUFFER_WIDTH { b'\n' => self.new_line(),
let character = self.buffer.chars[row][col].read(); byte => {
self.buffer.chars[row - 1][col].write(character); if self.column_position >= BUFFER_WIDTH {
} self.new_line();
} }
self.clear_row(BUFFER_HEIGHT - 1); let row = BUFFER_HEIGHT - 1;
self.column_position = 0; let col = self.column_position;
} let color_code = self.color_code;
fn clear_row(&mut self, row: usize) { let ptr = &mut self.buffer.chars[row][col] as *mut ScreenChar;
let blank = ScreenChar { let screenchar = ScreenChar {
ascii_char: b' ', ascii_char: byte,
color_code: self.color_code, color_code,
}; };
for col in 0..BUFFER_WIDTH {
self.buffer.chars[row][col].write(blank); unsafe {
core::ptr::write_volatile(ptr, screenchar);
}
self.column_position += 1;
}
}
}
fn new_line(&mut self) {
for row in 1..BUFFER_HEIGHT {
for col in 0..BUFFER_WIDTH {
let character = unsafe {
core::ptr::read_volatile(&self.buffer.chars[row][col] as *const ScreenChar)
};
let ptr = &mut self.buffer.chars[row - 1][col] as *mut ScreenChar;
unsafe {
core::ptr::write_volatile(ptr, character);
}
}
}
self.clear_row(BUFFER_HEIGHT - 1);
self.column_position = 0;
}
fn clear_row(&mut self, row: usize) {
let blank = ScreenChar {
ascii_char: b' ',
color_code: self.color_code,
};
for col in 0..BUFFER_WIDTH {
let ptr = &mut self.buffer.chars[row][col] as *mut ScreenChar;
unsafe {
core::ptr::write_volatile(ptr, blank);
}
}
} }
}
} }
impl fmt::Write for Writer { impl fmt::Write for Writer {
fn write_str(&mut self, s: &str) -> fmt::Result { fn write_str(&mut self, s: &str) -> fmt::Result {
self.write_string(s); self.write_string(s);
Ok(()) Ok(())
} }
} }
lazy_static! { lazy_static! {
pub static ref WRITER: Mutex<Writer> = Mutex::new(Writer { pub static ref WRITER: Mutex<Writer> =
column_position: 0, color_code: ColorCode::new(Color::Yellow, Color::Black), Mutex::new(Writer::new(ColorCode::new(Color::Yellow, Color::Black)));
buffer: unsafe { &mut *(0xb8000 as *mut Buffer) },
});
} }