Add redirects from old URLs

This commit is contained in:
Philipp Oppermann
2017-06-09 18:46:59 +02:00
parent c104445880
commit a1ed273f7f
5 changed files with 10 additions and 17 deletions

View File

@@ -4,10 +4,6 @@ order = 4
url = "printing-to-screen"
date = "2015-10-23"
updated = "2016-10-31"
aliases = [
"/2015/10/23/printing-to-screen/",
"/rust-os/printing-to-screen.html",
]
+++
In the [previous post] we switched from assembly to [Rust], a systems programming language that provides great safety. But so far we are using unsafe features like [raw pointers] whenever we want to print to screen. In this post we will create a Rust module that provides a safe and easy-to-use interface for the VGA text buffer. It will support Rust's [formatting macros], too.