This commit is contained in:
travis-update-bot
2015-11-06 23:41:33 +00:00
parent ef0bdc6986
commit cb463cc70f
4 changed files with 4 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
---
layout: post
title: 'Printing to Screen'
redirect_from: "/rust-os/2015/10/23/printing-to-screen/"
---
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.