From c52e72f647a09245cc2da61783f5c543cab104a5 Mon Sep 17 00:00:00 2001 From: alhaad Date: Fri, 21 Jul 2017 20:23:57 -0700 Subject: [PATCH] Fix typo. --- 03-bootsector-memory/boot_sect_memory.asm | 2 +- 03-bootsector-memory/boot_sect_memory_org.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/03-bootsector-memory/boot_sect_memory.asm b/03-bootsector-memory/boot_sect_memory.asm index d41e78e..7218841 100644 --- a/03-bootsector-memory/boot_sect_memory.asm +++ b/03-bootsector-memory/boot_sect_memory.asm @@ -43,7 +43,7 @@ jmp $ ; infinite loop the_secret: ; ASCII code 0x58 ('X') is stored just before the zero-padding. - ; On this code that is at byte 0x2d (check it out using 'xdd file.bin') + ; On this code that is at byte 0x2d (check it out using 'xxd file.bin') db "X" ; zero padding and magic bios number diff --git a/03-bootsector-memory/boot_sect_memory_org.asm b/03-bootsector-memory/boot_sect_memory_org.asm index 9a29adc..de5193c 100644 --- a/03-bootsector-memory/boot_sect_memory_org.asm +++ b/03-bootsector-memory/boot_sect_memory_org.asm @@ -39,7 +39,7 @@ jmp $ ; infinite loop the_secret: ; ASCII code 0x58 ('X') is stored just before the zero-padding. - ; On this code that is at byte 0x2d (check it out using 'xdd file.bin') + ; On this code that is at byte 0x2d (check it out using 'xxd file.bin') db "X" ; zero padding and magic bios number