klogger 0.0.14

Library for logging in kernel mode.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Write a string to the output channel.
pub unsafe fn puts(s: &str) {
    print!("{}", s);
}

pub unsafe fn putc(c: char) {
    print!("{}", c);
}

pub fn set_output(_fd: u16) {
    // not doing anything
}