mirror of https://github.com/E-Almqvist/eOS
parent
ee01670170
commit
3b1e25b047
@ -1,12 +1,9 @@ |
||||
# TO DO |
||||
- Malloc |
||||
- String Library |
||||
|
||||
- Concat |
||||
- Format |
||||
- Multiboot (read end of memory etc) |
||||
- String interpolation |
||||
- Screen scrolling |
||||
|
||||
- Scrolling |
||||
- Multiboot support (for grub etc) |
||||
- Rendering (VGA) |
||||
- User input (Keyboard) |
||||
- File system? |
||||
## Long term |
||||
- Get rust lang to work/switch to rust |
||||
- Shell? |
||||
- Improve memory management |
||||
|
@ -0,0 +1,9 @@ |
||||
extern "C" { |
||||
fn println(text: &str); |
||||
} |
||||
|
||||
fn rust_test() { |
||||
unsafe {println("RUST!")}; |
||||
} |
||||
|
||||
fn main() {} |
Loading…
Reference in new issue