소스 검색

simple boot sector

Carlos Fenollosa 10 년 전
부모
커밋
cf40262d74
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      01-boot-sector/README.md

+ 3 - 1
01-boot-sector/README.md

@@ -16,6 +16,7 @@ This is the simplest boot sector ever:
 ```
 e9 fd ff 00 00 00 00 00 00 00 00 00 00 00 00 00
 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+[ 29 more lines with sixteen zero-bytes each ]
 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa
 ```
 
@@ -26,7 +27,8 @@ The first three bytes perform an infinite jump
 Simplest boot sector ever
 -------------------------
 
-You can either write this with a binary editor, or just write a very
+You can either write the above 512 bytes
+with a binary editor, or just write a very
 simple assembler code:
 
 ```