Add chapter information to frontmatter

This commit is contained in:
Philipp Oppermann
2020-01-28 16:03:41 +01:00
parent c1319ba34f
commit 7d27a2c4a4
11 changed files with 25 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ weight = 5
path = "cpu-exceptions"
date = 2018-06-17
[extra]
chapter = "Interrupts"
+++
CPU exceptions occur in various erroneous situations, for example when accessing an invalid memory address or when dividing by zero. To react to them we have to set up an _interrupt descriptor table_ that provides handler functions. At the end of this post, our kernel will be able to catch [breakpoint exceptions] and to resume normal execution afterwards.