mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Set date of last update correctly for posts (#254)
This commit is contained in:
committed by
GitHub
parent
571f1d2fbf
commit
a1fccc12b6
@@ -1,7 +1,7 @@
|
||||
+++
|
||||
title = "Printing to Screen"
|
||||
date = "2015-10-23"
|
||||
updated = "2016-10-06"
|
||||
updated = "2016-10-31"
|
||||
aliases = [
|
||||
"/2015/10/23/printing-to-screen/",
|
||||
"/rust-os/printing-to-screen.html",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
+++
|
||||
title = "Better Exception Messages"
|
||||
date = "2016-08-03"
|
||||
updated = "2016-11-01"
|
||||
+++
|
||||
|
||||
In this post, we explore exceptions in more detail. Our goal is to print additional information when an exception occurs, for example the values of the instruction and stack pointer. In the course of this, we will explore inline assembly and naked functions. We will also add a handler function for page faults and read the associated error code.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
+++
|
||||
title = "Returning from Exceptions"
|
||||
date = "2016-09-21"
|
||||
updated = "2016-11-01"
|
||||
+++
|
||||
|
||||
In this post, we learn how to return from exceptions correctly. In the course of this, we will explore the `iretq` instruction, the C calling convention, multimedia registers, and the red zone.
|
||||
|
||||
Reference in New Issue
Block a user