From cf40262d74f8131246b39abe6f4b65b1f72b23a9 Mon Sep 17 00:00:00 2001 From: Carlos Fenollosa Date: Mon, 29 Sep 2014 11:17:37 +0200 Subject: [PATCH] simple boot sector --- 01-boot-sector/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/01-boot-sector/README.md b/01-boot-sector/README.md index f641e35..9cde4ee 100644 --- a/01-boot-sector/README.md +++ b/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: ```