From 99be56f9b840d7458bdc950f06ff61f97d3f944d Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 29 Oct 2015 19:28:32 +0100 Subject: [PATCH] Display `updated on` for `Entering Long Mode` post --- _posts/2015-08-25-entering-longmode.md | 1 + index.html | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/_posts/2015-08-25-entering-longmode.md b/_posts/2015-08-25-entering-longmode.md index a7eb3b69..dc209c81 100644 --- a/_posts/2015-08-25-entering-longmode.md +++ b/_posts/2015-08-25-entering-longmode.md @@ -3,6 +3,7 @@ layout: post title: 'Entering Long Mode' category: 'rust-os' redirect_from: "/rust-os/2015/08/25/entering-longmode/" +updated: 2015-10-29 00:00:00 +0000 --- In the [previous post] we created a minimal multiboot kernel. It just prints `OK` and hangs. The goal is to extend it and call 64-bit [Rust] code. But the CPU is currently in [protected mode] and allows only 32-bit instructions and up to 4GiB memory. So we need to setup _Paging_ and switch to the 64-bit [long mode] first. diff --git a/index.html b/index.html index 710409c1..aabfac05 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,12 @@ title: Home - + + + {% if post.updated %} + (updated on {{ post.updated | date_to_string }}) + {% endif %} + {% if post.content contains '' %} {{ post.content | split:'' | first }}