diff --git a/src/content/chapters/1-the-basics.mdx b/src/content/chapters/1-the-basics.mdx
index 9042633..85d3411 100644
--- a/src/content/chapters/1-the-basics.mdx
+++ b/src/content/chapters/1-the-basics.mdx
@@ -78,7 +78,7 @@ In kernel mode, anything goes: the CPU is allowed to execute any supported instr
Processors start in kernel mode. Before executing a program, the kernel initiates the switch to user mode.
-
+
An example of how processor modes manifest in a real architecture: on x86-64, the current privilege level (CPL) can be read from a register called `cs` (code segment). Specifically, the CPL is contained in the two [least significant bits](https://en.wikipedia.org/wiki/Bit_numbering) of the `cs` register. Those two bits can store x86-64's four possible rings: ring 0 is kernel mode and ring 3 is user mode. Rings 1 and 2 are designed for running drivers but are only used by a handful of older niche operating systems. If the CPL bits are `11`, for example, the CPU is running in ring 3: user mode.