diff --git a/blog/content/edition-3/posts/02-booting/index.md b/blog/content/edition-3/posts/02-booting/index.md index 570c4b4d..2cb29f4e 100644 --- a/blog/content/edition-3/posts/02-booting/index.md +++ b/blog/content/edition-3/posts/02-booting/index.md @@ -626,8 +626,7 @@ fn kernel_main(boot_info: &'static mut BootInfo) -> ! { We use the [`wrapping_add`] method here because Rust panics on implicit integer overflow (at least in debug mode). By adding a prime number, we try to add some variety. The result looks as follows: -TODO - +![QEMU showing repeating gradient columns](qemu-wrapping-add.png) ### Booting on Real Hardware diff --git a/blog/content/edition-3/posts/02-booting/qemu-wrapping-add.png b/blog/content/edition-3/posts/02-booting/qemu-wrapping-add.png new file mode 100644 index 00000000..fed729be Binary files /dev/null and b/blog/content/edition-3/posts/02-booting/qemu-wrapping-add.png differ