VGA Text Mode

1 ยท Philipp Oppermann ยท Feb. 26, 2018, midnight
The VGA text mode is a simple way to print text to the screen. In this post, we create an interface that makes its usage safe and simple, by encapsulating all unsafety in a separate module. We also implement support for Rust's formatting macros. This blog is openly developed on GitHub. If you have any problems or questions, please open an issue there. You can also leave comments at the bottom. The complete source code for this post can be found in the post-03 branch. ๐Ÿ”— The VGA Text Buffer To p...