about summary refs log tree commit diff stats
path: root/html/baremetal
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-23 23:11:24 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-23 23:11:24 -0800
commitac00ea787db6a3342a3511420237c0f1e983c44f (patch)
tree85aa0b4da8e08396685f42b04f35fb8c59ea3bca /html/baremetal
parent34599e2c63a203c47a656412d82ee1d91fcfee39 (diff)
downloadmu-ac00ea787db6a3342a3511420237c0f1e983c44f.tar.gz
7551
Diffstat (limited to 'html/baremetal')
-rw-r--r--html/baremetal/boot.hex.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/baremetal/boot.hex.html b/html/baremetal/boot.hex.html
index d27c6b01..7f666df4 100644
--- a/html/baremetal/boot.hex.html
+++ b/html/baremetal/boot.hex.html
@@ -53,7 +53,7 @@ if ('onhashchange' in window) {
 <body onload='JumpToLine();'>
 <a href='https://github.com/akkartik/mu/blob/main/baremetal/boot.hex'>https://github.com/akkartik/mu/blob/main/baremetal/boot.hex</a>
 <pre id='vimCodeElement'>
-<span id="L1" class="LineNr">  1 </span><span class="subxComment"># Code for the first disk sector that all programs in this directory need:</span>
+<span id="L1" class="LineNr">  1 </span><span class="subxComment"># Code for the first few disk sectors that all programs in this directory need:</span>
 <span id="L2" class="LineNr">  2 </span><span class="subxComment">#   - load sectors past the first (using BIOS primitives) since only the first is available by default</span>
 <span id="L3" class="LineNr">  3 </span><span class="subxComment">#     - if this fails, print 'D' at top-left of screen and halt</span>
 <span id="L4" class="LineNr">  4 </span><span class="subxComment">#   - initialize a minimal graphics mode</span>
@@ -79,7 +79,7 @@ if ('onhashchange' in window) {
 <span id="L24" class="LineNr"> 24 </span><span class="subxComment"># This file contains just lowercase hex bytes and comments. Zero</span>
 <span id="L25" class="LineNr"> 25 </span><span class="subxComment"># error-checking. Make liberal use of:</span>
 <span id="L26" class="LineNr"> 26 </span><span class="subxComment">#   - comments documenting expected offsets</span>
-<span id="L27" class="LineNr"> 27 </span><span class="subxComment">#   - size checks on the emitted file (currently: 512 bytes)</span>
+<span id="L27" class="LineNr"> 27 </span><span class="subxComment">#   - size checks on the emitted file (currently: 5120 bytes)</span>
 <span id="L28" class="LineNr"> 28 </span><span class="subxComment">#   - xxd to eyeball that offsets contain expected bytes</span>
 <span id="L29" class="LineNr"> 29 </span><span class="subxComment">#</span>
 <span id="L30" class="LineNr"> 30 </span><span class="subxComment"># Programs using this initialization:</span>