os_essentials 0.0.3

A collection of tools for building simple educational operating systems in Rust in an x86 system. NOTE: MEANT TO BE BAREMETAL, YOU MUST HAVE compiler-buildtins-mem, core, compiler_builtins, alloc and a suited target, a vm or physical computer and a bootable usb required to test.
Documentation
1
2
3
4
5
6
7
#![no_std]
#![no_main]
pub mod ps2key;
pub mod usize;
pub mod uxstring;
pub mod vga;
pub mod osalloc;