mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-20 16:07:49 +00:00
Convert front matters to hugo's toml-based format
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
---
|
||||
layout: post
|
||||
title: 'Printing to Screen'
|
||||
redirect_from: "/2015/10/23/printing-to-screen/"
|
||||
---
|
||||
+++
|
||||
title = "Printing to Screen"
|
||||
date = "2015-10-23"
|
||||
aliases = [
|
||||
"/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.
|
||||
|
||||
[previous post]: {{ page.previous.url }}
|
||||
|
||||
Reference in New Issue
Block a user