From a7354022682b0e9000ef94e313224a07654bda06 Mon Sep 17 00:00:00 2001 From: Livenne <2133249839@qq.com> Date: Fri, 24 Oct 2025 16:36:37 +0800 Subject: [PATCH] 05: fix typo(%included -> %include) in comment --- 05-bootsector-functions-strings/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-bootsector-functions-strings/README.md b/05-bootsector-functions-strings/README.md index 0c57b81..bb9276b 100644 --- a/05-bootsector-functions-strings/README.md +++ b/05-bootsector-functions-strings/README.md @@ -123,7 +123,7 @@ Code! ----- Let's jump to the code. File `boot_sect_print.asm` is the subroutine which will -get `%include`d in the main file. It uses a loop to print bytes on screen. +get `%include` in the main file. It uses a loop to print bytes on screen. It also includes a function to print a newline. The familiar `'\n'` is actually two bytes, the newline char `0x0A` and a carriage return `0x0D`. Please experiment by removing the carriage return char and see its effect.