Skip to content

Commit

Permalink
Merge pull request cfenollosa#21 from alhaad/master
Browse files Browse the repository at this point in the history
Fix typo.
  • Loading branch information
cfenollosa authored Jan 2, 2018
2 parents bbdcf96 + c52e72f commit f8bd5e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 03-bootsector-memory/boot_sect_memory.asm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 03-bootsector-memory/boot_sect_memory_org.asm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8bd5e4

Please sign in to comment.