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