From 2eefbdfed90c30ce3bd1e89577b9957b5102dc25 Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Sun, 15 Jun 2025 15:03:00 +0500 Subject: [PATCH] Fix link to assembler blog Signed-off-by: Alexander Kuleshov --- Booting/linux-bootstrap-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index b334e07..49b5d9d 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -4,7 +4,7 @@ Kernel booting process. Part 1. From the bootloader to the kernel -------------------------------------------------------------------------------- -If you read my previous [blog posts](https://0xax.github.io/categories/assembler/), you might have noticed that I have been involved with low-level programming for some time. I wrote some posts about assembly programming for `x86_64` Linux and, at the same time, started to dive into the Linux kernel source code. +If you read my previous [blog posts](https://github.com/0xAX/asm), you might have noticed that I have been involved with low-level programming for some time. I wrote some posts about assembly programming for `x86_64` Linux and, at the same time, started to dive into the Linux kernel source code. I have a great interest in understanding how low-level things work, how programs run on my computer, how they are located in memory, how the kernel manages processes and memory, how the network stack works at a low level, and many many other things. So, I decided to write yet another series of posts about the Linux kernel for the **x86_64** architecture.