From 64712ac60736b299d8df0fda4c971d9be4c8a864 Mon Sep 17 00:00:00 2001 From: WarpspeedSCP Date: Tue, 16 Apr 2019 22:21:45 +0530 Subject: [PATCH] fix typo --- 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 c7b8299..f15594d 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -377,7 +377,7 @@ which pushes the value of `ds` to the stack, followed by the address of the [6]( Stack Setup -------------------------------------------------------------------------------- -Almost all of the setup code is for ppreparing the C language environment in real mode. The next [step](https://github.com/torvalds/linux/blob/v4.16/arch/x86/boot/header.S#L575) is checking the `ss` register's value and setting up a correct stack if `ss` is wrong: +Almost all of the setup code is for preparing the C language environment in real mode. The next [step](https://github.com/torvalds/linux/blob/v4.16/arch/x86/boot/header.S#L575) is checking the `ss` register's value and setting up a correct stack if `ss` is wrong: ```assembly movw %ss, %dx