Upgrade to zola 0.14.1

This commit is contained in:
Philipp Oppermann
2021-10-17 21:06:57 +02:00
parent 5c750985a6
commit 44f51402f7
9 changed files with 65 additions and 46 deletions

View File

@@ -144,7 +144,7 @@ EXCEPTION: BREAKPOINT at 0x110970
So let's disassemble the instruction at `0x110970` and its predecessor:
```shell
```bash
> objdump -d build/kernel-x86_64.bin | grep -B1 "110970:"
11096f: cc int3
110970: 48 c7 01 2a 00 00 00 movq $0x2a,(%rcx)

View File

@@ -675,7 +675,7 @@ I created the [linked_list_allocator] crate to handle all of these cases. It con
We need to add the extern crate to our `Cargo.toml` and our `lib.rs`:
``` shell
``` bash
> cargo add linked_list_allocator
```