From 7992ce6a2159f481615ee0cf32f95234bfc7c71d Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 17 May 2021 15:53:23 +0200 Subject: [PATCH] Fix link --- blog/content/edition-2/posts/07-hardware-interrupts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-2/posts/07-hardware-interrupts/index.md b/blog/content/edition-2/posts/07-hardware-interrupts/index.md index 1eba3f90..f9c8ae72 100644 --- a/blog/content/edition-2/posts/07-hardware-interrupts/index.md +++ b/blog/content/edition-2/posts/07-hardware-interrupts/index.md @@ -77,7 +77,7 @@ The default configuration of the PICs is not usable, because it sends interrupt The configuration happens by writing special values to the command and data ports of the PICs. Fortunately there is already a crate called [`pic8259`], so we don't need to write the initialization sequence ourselves. In case you are interested how it works, check out [its source code][pic crate source], it's fairly small and well documented. -[pic crate source]: https://docs.rs/crate/pic8259/0.2.0/source/src/lib.rs +[pic crate source]: https://docs.rs/crate/pic8259/0.10.0/source/src/lib.rs To add the crate as dependency, we add the following to our project: