Switch to none permalinks and setup redirects

This commit is contained in:
Philipp Oppermann
2015-10-24 14:53:48 +02:00
parent 9497fc853e
commit 2f64af811e
7 changed files with 11 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
layout: post
title: 'Entering Long Mode'
category: 'rust-os'
redirect_from: "/rust-os/2015/08/25/entering-longmode/"
---
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.