TODO update

rust
E. Almqvist 3 years ago
parent ee01670170
commit 3b1e25b047
  1. 17
      TODO.md
  2. 9
      kernel/test.rs

@ -1,12 +1,9 @@
# TO DO # TO DO
- Malloc - Multiboot (read end of memory etc)
- String Library - String interpolation
- Screen scrolling
- Concat ## Long term
- Format - Get rust lang to work/switch to rust
- Shell?
- Scrolling - Improve memory management
- Multiboot support (for grub etc)
- Rendering (VGA)
- User input (Keyboard)
- File system?

@ -0,0 +1,9 @@
extern "C" {
fn println(text: &str);
}
fn rust_test() {
unsafe {println("RUST!")};
}
fn main() {}
Loading…
Cancel
Save