summary refs log tree commit diff stats
path: root/post.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-05-24 02:39:52 -0400
committerBen Morrison <ben@gbmor.dev>2019-05-24 02:39:52 -0400
commit0e36439643968b44100c6edd0b5b86af1047d8ae (patch)
treeed63dc34dbf7b999eb5c9ee63adf74ac3a95eaa6 /post.go
parentdbc93a011f442d09a18b7ae4ab34a8cfe64431dc (diff)
downloadgetwtxt-0e36439643968b44100c6edd0b5b86af1047d8ae.tar.gz
updated registry library
Diffstat (limited to 'post.go')
0 files changed, 0 insertions, 0 deletions
3'>83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - baremetal/boot0.hex</title>
<meta name="Generator" content="Vim/8.1">
<meta name="plugin-version" content="vim8.1_v1">
<meta name="syntax" content="conf">
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-light">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #c6c6c6; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.LineNr { }
.Comment { color: #005faf; }
.Todo { color: #000000; background-color: #ffff00; padding-bottom: 1px; }
-->
</style>

<script type='text/javascript'>
<!--

/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
  var lineNum;
  lineNum = window.location.hash;
  lineNum = lineNum.substr(1); /* strip off '#' */

  if (lineNum.indexOf('L') == -1) {
    lineNum = 'L'+lineNum;
  }
  var lineElem = document.getElementById(lineNum);
  /* Always jump to new location even if the line was hidden inside a fold, or
   * we corrected the raw number to a line ID.
   */
  if (lineElem) {
    lineElem.scrollIntoView(true);
  }
  return true;
}
if ('onhashchange' in window) {
  window.onhashchange = JumpToLine;
}

-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/master/baremetal/boot0.hex'>https://github.com/akkartik/mu/blob/master/baremetal/boot0.hex</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr">  1 </span><span class="Comment"># A minimal bootable image that:</span>
<span id="L2" class="LineNr">  2 </span><span class="Comment">#   - loads more sectors past the first boot sector (using BIOS primitives)</span>
<span id="L3" class="LineNr">  3 </span><span class="Comment">#   - switches to 32-bit mode (giving up access to BIOS primitives)</span>
<span id="L4" class="LineNr">  4 </span><span class="Comment">#   - sets up a handler for keyboard events</span>
<span id="L5" class="LineNr">  5 </span><span class="Comment">#   - as an example program, prints '1' to the top-left position on screen (by writing to memory-mapped VGA memory) when the '1' key is typed</span>
<span id="L6" class="LineNr">  6 </span><span class="Comment">#</span>
<span id="L7" class="LineNr">  7 </span><span class="Comment"># When it's ready to accept keys, it prints 'H' to the top-left of the screen.</span>
<span id="L8" class="LineNr">  8 </span><span class="Comment">#</span>
<span id="L9" class="LineNr">  9 </span><span class="Comment"># If the initial load fails, it prints 'D' to the top-left of the screen and</span>
<span id="L10" class="LineNr"> 10 </span><span class="Comment"># halts.</span>
<span id="L11" class="LineNr"> 11 </span><span class="Comment">#</span>
<span id="L12" class="LineNr"> 12 </span><span class="Comment"># To convert to a disk image, first prepare a realistically sized disk image:</span>
<span id="L13" class="LineNr"> 13 </span><span class="Comment">#   dd if=/dev/zero of=disk.img count=20160  # 512-byte sectors, so 10MB</span>
<span id="L14" class="LineNr"> 14 </span><span class="Comment"># Now fill in sectors:</span>
<span id="L15" class="LineNr"> 15 </span><span class="Comment">#   ./bootstrap run apps/hex &lt; baremetal/boot0.hex &gt; boot.bin</span>
<span id="L16" class="LineNr"> 16 </span><span class="Comment">#   dd if=boot.bin of=disk.img conv=notrunc</span>
<span id="L17" class="LineNr"> 17 </span><span class="Comment"># To run:</span>
<span id="L18" class="LineNr"> 18 </span><span class="Comment">#   qemu-system-i386 disk.img</span>
<span id="L19" class="LineNr"> 19 </span><span class="Comment"># Or:</span>
<span id="L20" class="LineNr"> 20 </span><span class="Comment">#   bochs -f baremetal/boot.bochsrc  # boot.bochsrc loads disk.img</span>
<span id="L21" class="LineNr"> 21 </span><span class="Comment">#</span>
<span id="L22" class="LineNr"> 22 </span><span class="Comment"># Since we start out in 16-bit mode, we need instructions SubX doesn't</span>
<span id="L23" class="LineNr"> 23 </span><span class="Comment"># support.</span>
<span id="L24" class="LineNr"> 24 </span><span class="Comment"># This file contains just lowercase hex bytes and comments. Zero</span>
<span id="L25" class="LineNr"> 25 </span><span class="Comment"># error-checking. Make liberal use of:</span>
<span id="L26" class="LineNr"> 26 </span><span class="Comment">#   - comments documenting expected offsets</span>
<span id="L27" class="LineNr"> 27 </span><span class="Comment">#   - size checks on the emitted file (currently: 512 bytes)</span>
<span id="L28" class="LineNr"> 28 </span><span class="Comment">#   - xxd to eyeball that offsets contain expected bytes</span>
<span id="L29" class="LineNr"> 29 </span>
<span id="L30" class="LineNr"> 30 </span><span class="Comment">## 16-bit entry point</span>
<span id="L31" class="LineNr"> 31 </span>
<span id="L32" class="LineNr"> 32 </span><span class="Comment"># Upon reset, the IBM PC</span>
<span id="L33" class="LineNr"> 33 </span><span class="Comment">#   loads the first sector (512 bytes)</span>
<span id="L34" class="LineNr"> 34 </span><span class="Comment">#   from some bootable image (see the boot sector marker at the end of this file)</span>
<span id="L35" class="LineNr"> 35 </span><span class="Comment">#   to the address range [0x7c00, 0x7e00)</span>
<span id="L36" class="LineNr"> 36 </span>
<span id="L37" class="LineNr"> 37 </span><span class="Comment"># offset 00 (address 0x7c00):</span>
<span id="L38" class="LineNr"> 38 </span>  <span class="Comment"># disable interrupts for this initialization</span>
<span id="L39" class="LineNr"> 39 </span>  fa  <span class="Comment"># cli</span>
<span id="L40" class="LineNr"> 40 </span>
<span id="L41" class="LineNr"> 41 </span>  <span class="Comment"># initialize segment registers</span>
<span id="L42" class="LineNr"> 42 </span>  <span class="Comment"># this isn't always needed, but the recommendation is to not make assumptions</span>
<span id="L43" class="LineNr"> 43 </span>  b8 00 00  <span class="Comment"># ax &lt;- 0</span>
<span id="L44" class="LineNr"> 44 </span>  8e d8  <span class="Comment"># ds &lt;- ax</span>
<span id="L45" class="LineNr"> 45 </span>  8e d0  <span class="Comment"># ss &lt;- ax</span>
<span id="L46" class="LineNr"> 46 </span>  8e c0  <span class="Comment"># es &lt;- ax</span>
<span id="L47" class="LineNr"> 47 </span>  8e e0  <span class="Comment"># fs &lt;- ax</span>
<span id="L48" class="LineNr"> 48 </span>  8e e8  <span class="Comment"># gs &lt;- ax</span>
<span id="L49" class="LineNr"> 49 </span>
<span id="L50" class="LineNr"> 50 </span>  <span class="Comment"># We don't read or write the stack before we get to 32-bit mode. No function</span>
<span id="L51" class="LineNr"> 51 </span>  <span class="Comment"># calls, so we don't need to initialize the stack.</span>
<span id="L52" class="LineNr"> 52 </span>
<span id="L53" class="LineNr"> 53 </span><span class="Comment"># 0e:</span>
<span id="L54" class="LineNr"> 54 </span>  <span class="Comment"># load more sectors from disk</span>
<span id="L55" class="LineNr"> 55 </span>  b4 02  <span class="Comment"># ah &lt;- 2  # read sectors from disk</span>
<span id="L56" class="LineNr"> 56 </span>  <span class="Comment"># dl comes conveniently initialized at boot time with the index of the device being booted</span>
<span id="L57" class="LineNr"> 57 </span>  b5 00  <span class="Comment"># ch &lt;- 0  # cylinder 0</span>
<span id="L58" class="LineNr"> 58 </span>  b6 00  <span class="Comment"># dh &lt;- 0  # track 0</span>
<span id="L59" class="LineNr"> 59 </span>  b1 02  <span class="Comment"># cl &lt;- 2  # second sector, 1-based</span>
<span id="L60" class="LineNr"> 60 </span>  b0 01  <span class="Comment"># al &lt;- 1  # number of sectors to read</span>
<span id="L61" class="LineNr"> 61 </span>  <span class="Comment"># address to write sectors to = es:bx = 0x7e00, contiguous with boot segment</span>
<span id="L62" class="LineNr"> 62 </span>  bb 00 00  <span class="Comment"># bx &lt;- 0</span>
<span id="L63" class="LineNr"> 63 </span>  8e c3  <span class="Comment"># es &lt;- bx</span>
<span id="L64" class="LineNr"> 64 </span>  bb 00 7e  <span class="Comment"># bx &lt;- 0x7e00</span>
<span id="L65" class="LineNr"> 65 </span>  cd 13  <span class="Comment"># int 13h, BIOS disk service</span>
<span id="L66" class="LineNr"> 66 </span>  0f 82 76 00  <span class="Comment"># jump-if-carry disk-error</span>
<span id="L67" class="LineNr"> 67 </span>
<span id="L68" class="LineNr"> 68 </span><span class="Comment"># 26:</span>
<span id="L69" class="LineNr"> 69 </span>  <span class="Comment"># undo the A20 hack: <a href="https://en.wikipedia.org/wiki/A20_line">https://en.wikipedia.org/wiki/A20_line</a></span>
<span id="L70" class="LineNr"> 70 </span>  <span class="Comment"># this is from <a href="https://github.com/mit-pdos/xv6-public/blob/master/bootasm.S">https://github.com/mit-pdos/xv6-public/blob/master/bootasm.S</a></span>
<span id="L71" class="LineNr"> 71 </span>  <span class="Comment"># seta20.1:</span>
<span id="L72" class="LineNr"> 72 </span>  e4 64  <span class="Comment"># al &lt;- port 0x64</span>
<span id="L73" class="LineNr"> 73 </span>  a8 02  <span class="Comment"># set zf if bit 1 (second-least significant) is not set</span>
<span id="L74" class="LineNr"> 74 </span>  75 fa  <span class="Comment"># if zf not set, goto seta20.1 (-6)</span>
<span id="L75" class="LineNr"> 75 </span>
<span id="L76" class="LineNr"> 76 </span>  b0 d1  <span class="Comment"># al &lt;- 0xd1</span>
<span id="L77" class="LineNr"> 77 </span>  e6 64  <span class="Comment"># port 0x64 &lt;- al</span>
<span id="L78" class="LineNr"> 78 </span>
<span id="L79" class="LineNr"> 79 </span><span class="Comment"># 30:</span>
<span id="L80" class="LineNr"> 80 </span>  <span class="Comment"># seta20.2:</span>
<span id="L81" class="LineNr"> 81 </span>  e4 64  <span class="Comment"># al &lt;- port 0x64</span>
<span id="L82" class="LineNr"> 82 </span>  a8 02  <span class="Comment"># set zf if bit 1 (second-least significant) is not set</span>
<span id="L83" class="LineNr"> 83 </span>  75 fa  <span class="Comment"># if zf not set, goto seta20.2 (-6)</span>
<span id="L84" class="LineNr"> 84 </span>
<span id="L85" class="LineNr"> 85 </span>  b0 df  <span class="Comment"># al &lt;- 0xdf</span>
<span id="L86" class="LineNr"> 86 </span>  e6 64  <span class="Comment"># port 0x64 &lt;- al</span>
<span id="L87" class="LineNr"> 87 </span>
<span id="L88" class="LineNr"> 88 </span><span class="Comment"># 3a:</span>
<span id="L89" class="LineNr"> 89 </span>  <span class="Comment"># switch to 32-bit mode</span>
<span id="L90" class="LineNr"> 90 </span>  0f 01 16  <span class="Comment"># lgdt 00/mod/indirect 010/subop 110/rm/use-disp16</span>
<span id="L91" class="LineNr"> 91 </span>    80 7c  <span class="Comment"># *gdt_descriptor</span>
<span id="L92" class="LineNr"> 92 </span><span class="Comment"># 3f:</span>
<span id="L93" class="LineNr"> 93 </span>  0f 20 c0  <span class="Comment"># eax &lt;- cr0</span>
<span id="L94" class="LineNr"> 94 </span>  66 83 c8 01  <span class="Comment"># eax &lt;- or 0x1</span>
<span id="L95" class="LineNr"> 95 </span>  0f 22 c0  <span class="Comment"># cr0 &lt;- eax</span>
<span id="L96" class="LineNr"> 96 </span>  ea c0 7c 08 00  <span class="Comment"># far jump to initialize_32bit_mode after setting cs to the record at offset 8 in the gdt (gdt_code)</span>
<span id="L97" class="LineNr"> 97 </span>
<span id="L98" class="LineNr"> 98 </span><span class="Comment"># padding</span>
<span id="L99" class="LineNr"> 99 </span><span class="Comment"># 4e:</span>
<span id="L100" class="LineNr">100 </span>                                          00 00
<span id="L101" class="LineNr">101 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L102" class="LineNr">102 </span>
<span id="L103" class="LineNr">103 </span><span class="Comment">## GDT: 3 records of 8 bytes each</span>
<span id="L104" class="LineNr">104 </span>
<span id="L105" class="LineNr">105 </span><span class="Comment"># 60:</span>
<span id="L106" class="LineNr">106 </span><span class="Comment"># gdt_start:</span>
<span id="L107" class="LineNr">107 </span><span class="Comment"># gdt_null:  mandatory null descriptor</span>
<span id="L108" class="LineNr">108 </span>  00 00 00 00 00 00 00 00
<span id="L109" class="LineNr">109 </span><span class="Comment"># gdt_code:  (offset 8 from gdt_start)</span>
<span id="L110" class="LineNr">110 </span>  ff ff  <span class="Comment"># limit[0:16]</span>
<span id="L111" class="LineNr">111 </span>  00 00 00  <span class="Comment"># base[0:24]</span>
<span id="L112" class="LineNr">112 </span>  9a  <span class="Comment"># 1/present 00/privilege 1/descriptor type = 1001b</span>
<span id="L113" class="LineNr">113 </span>      <span class="Comment"># 1/code 0/conforming 1/readable 0/accessed = 1010b</span>
<span id="L114" class="LineNr">114 </span>  cf  <span class="Comment"># 1/granularity 1/32-bit 0/64-bit-segment 0/AVL = 1100b</span>
<span id="L115" class="LineNr">115 </span>      <span class="Comment"># limit[16:20] = 1111b</span>
<span id="L116" class="LineNr">116 </span>  00  <span class="Comment"># base[24:32]</span>
<span id="L117" class="LineNr">117 </span><span class="Comment"># gdt_data:  (offset 16 from gdt_start)</span>
<span id="L118" class="LineNr">118 </span>  ff ff  <span class="Comment"># limit[0:16]</span>
<span id="L119" class="LineNr">119 </span>  00 00 00  <span class="Comment"># base[0:24]</span>
<span id="L120" class="LineNr">120 </span>  92  <span class="Comment"># 1/present 00/privilege 1/descriptor type = 1001b</span>
<span id="L121" class="LineNr">121 </span>      <span class="Comment"># 0/data 0/conforming 1/readable 0/accessed = 0010b</span>
<span id="L122" class="LineNr">122 </span>  cf  <span class="Comment"># same as gdt_code</span>
<span id="L123" class="LineNr">123 </span>  00  <span class="Comment"># base[24:32]</span>
<span id="L124" class="LineNr">124 </span><span class="Comment"># gdt_end:</span>
<span id="L125" class="LineNr">125 </span>
<span id="L126" class="LineNr">126 </span><span class="Comment"># padding</span>
<span id="L127" class="LineNr">127 </span><span class="Comment"># 78:</span>
<span id="L128" class="LineNr">128 </span>                        00 00 00 00 00 00 00 00
<span id="L129" class="LineNr">129 </span>
<span id="L130" class="LineNr">130 </span><span class="Comment"># 80:</span>
<span id="L131" class="LineNr">131 </span><span class="Comment"># gdt_descriptor:</span>
<span id="L132" class="LineNr">132 </span>  17 00  <span class="Comment"># final index of gdt = gdt_end - gdt_start - 1</span>
<span id="L133" class="LineNr">133 </span>  60 7c 00 00  <span class="Comment"># start = gdt_start</span>
<span id="L134" class="LineNr">134 </span>
<span id="L135" class="LineNr">135 </span><span class="Comment"># padding</span>
<span id="L136" class="LineNr">136 </span><span class="Comment"># 85:</span>
<span id="L137" class="LineNr">137 </span>                  00 00 00 00 00 00 00 00 00 00
<span id="L138" class="LineNr">138 </span>
<span id="L139" class="LineNr">139 </span><span class="Comment"># 90:</span>
<span id="L140" class="LineNr">140 </span><span class="Comment"># disk_error:</span>
<span id="L141" class="LineNr">141 </span>  <span class="Comment"># print 'D' to top-left of screen to indicate disk error</span>
<span id="L142" class="LineNr">142 </span>  <span class="Comment"># *0xb8000 &lt;- 0x0f44</span>
<span id="L143" class="LineNr">143 </span>  <span class="Comment"># bx &lt;- 0xb800</span>
<span id="L144" class="LineNr">144 </span>  bb 00 b8
<span id="L145" class="LineNr">145 </span>  <span class="Comment"># ds &lt;- bx</span>
<span id="L146" class="LineNr">146 </span>  8e db  <span class="Comment"># 11b/mod 011b/reg/ds 011b/rm/bx</span>
<span id="L147" class="LineNr">147 </span>  <span class="Comment"># al &lt;- 'D'</span>
<span id="L148" class="LineNr">148 </span>  b0 44
<span id="L149" class="LineNr">149 </span>  <span class="Comment"># ah &lt;- 0x0f  # white on black</span>
<span id="L150" class="LineNr">150 </span>  b4 0f
<span id="L151" class="LineNr">151 </span>  <span class="Comment"># bx &lt;- 0</span>
<span id="L152" class="LineNr">152 </span>  bb 00 00
<span id="L153" class="LineNr">153 </span>  <span class="Comment"># *ds:bx &lt;- ax</span>
<span id="L154" class="LineNr">154 </span>  89 07  <span class="Comment"># 00b/mod/indirect 000b/reg/ax 111b/rm/bx</span>
<span id="L155" class="LineNr">155 </span>
<span id="L156" class="LineNr">156 </span>e9 fb ff  <span class="Comment"># loop forever</span>
<span id="L157" class="LineNr">157 </span>
<span id="L158" class="LineNr">158 </span><span class="Comment"># padding</span>
<span id="L159" class="LineNr">159 </span><span class="Comment"># a1:</span>
<span id="L160" class="LineNr">160 </span>   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L161" class="LineNr">161 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L162" class="LineNr">162 </span>
<span id="L163" class="LineNr">163 </span><span class="Comment">## 32-bit code from this point (still some instructions not in SubX)</span>
<span id="L164" class="LineNr">164 </span>
<span id="L165" class="LineNr">165 </span><span class="Comment"># c0:</span>
<span id="L166" class="LineNr">166 </span><span class="Comment"># initialize_32bit_mode:</span>
<span id="L167" class="LineNr">167 </span>  66 b8 10 00  <span class="Comment"># ax &lt;- offset 16 from gdt_start</span>
<span id="L168" class="LineNr">168 </span>  8e d8  <span class="Comment"># ds &lt;- ax</span>
<span id="L169" class="LineNr">169 </span>  8e d0  <span class="Comment"># ss &lt;- ax</span>
<span id="L170" class="LineNr">170 </span>  8e c0  <span class="Comment"># es &lt;- ax</span>
<span id="L171" class="LineNr">171 </span>  8e e0  <span class="Comment"># fs &lt;- ax</span>
<span id="L172" class="LineNr">172 </span>  8e e8  <span class="Comment"># gs &lt;- ax</span>
<span id="L173" class="LineNr">173 </span>
<span id="L174" class="LineNr">174 </span>  <span class="Comment"># load interrupt handlers</span>
<span id="L175" class="LineNr">175 </span>  0f 01 1d  <span class="Comment"># lidt 00/mod/indirect 011/subop 101/rm32/use-disp32</span>
<span id="L176" class="LineNr">176 </span>    00 7f 00 00  <span class="Comment"># *idt_descriptor</span>
<span id="L177" class="LineNr">177 </span>
<span id="L178" class="LineNr">178 </span>  <span class="Comment"># enable keyboard IRQ</span>
<span id="L179" class="LineNr">179 </span>  b0 fd  <span class="Comment"># al &lt;- 0xfd  # enable just IRQ1</span>
<span id="L180" class="LineNr">180 </span>  e6 21  <span class="Comment"># port 0x21 &lt;- al</span>
<span id="L181" class="LineNr">181 </span>
<span id="L182" class="LineNr">182 </span>  <span class="Comment"># initialization is done; enable interrupts</span>
<span id="L183" class="LineNr">183 </span>  fb
<span id="L184" class="LineNr">184 </span>  e9 21 00 00 00  <span class="Comment"># jump to 0x7d00</span>
<span id="L185" class="LineNr">185 </span>
<span id="L186" class="LineNr">186 </span><span class="Comment"># padding</span>
<span id="L187" class="LineNr">187 </span><span class="Comment"># df:</span>
<span id="L188" class="LineNr">188 </span>                                             00
<span id="L189" class="LineNr">189 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L190" class="LineNr">190 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L191" class="LineNr">191 </span>
<span id="L192" class="LineNr">192 </span><span class="Comment">## 'application' SubX code: print one character to top-left of screen</span>
<span id="L193" class="LineNr">193 </span>
<span id="L194" class="LineNr">194 </span><span class="Comment"># offset 100 (address 0x7d00):</span>
<span id="L195" class="LineNr">195 </span><span class="Comment"># Entry:</span>
<span id="L196" class="LineNr">196 </span>  <span class="Comment"># eax &lt;- *0x7ff4  # random address in second segment containing 'H'</span>
<span id="L197" class="LineNr">197 </span>  8b  <span class="Comment"># copy rm32 to r32</span>
<span id="L198" class="LineNr">198 </span>    05  <span class="Comment"># 00/mod/indirect 000/r32/eax 101/rm32/use-disp32</span>
<span id="L199" class="LineNr">199 </span>    <span class="Comment"># disp32</span>
<span id="L200" class="LineNr">200 </span>    f4 7f 00 00
<span id="L201" class="LineNr">201 </span>  <span class="Comment"># *0xb8000 &lt;- eax</span>
<span id="L202" class="LineNr">202 </span>  89  <span class="Comment"># copy r32 to rm32</span>
<span id="L203" class="LineNr">203 </span>    05  <span class="Comment"># 00/mod/indirect 000/r32/eax 101/rm32/use-disp32</span>
<span id="L204" class="LineNr">204 </span>    <span class="Comment"># disp32</span>
<span id="L205" class="LineNr">205 </span>    00 80 0b 00
<span id="L206" class="LineNr">206 </span>
<span id="L207" class="LineNr">207 </span>e9 fb ff ff ff  <span class="Comment"># loop forever</span>
<span id="L208" class="LineNr">208 </span>
<span id="L209" class="LineNr">209 </span><span class="Comment"># padding</span>
<span id="L210" class="LineNr">210 </span><span class="Comment"># 111:</span>
<span id="L211" class="LineNr">211 </span>   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L212" class="LineNr">212 </span>
<span id="L213" class="LineNr">213 </span><span class="Comment"># 120:</span>
<span id="L214" class="LineNr">214 </span><span class="Comment"># null interrupt handler:</span>
<span id="L215" class="LineNr">215 </span>  cf  <span class="Comment"># iret</span>
<span id="L216" class="LineNr">216 </span>
<span id="L217" class="LineNr">217 </span><span class="Comment"># padding</span>
<span id="L218" class="LineNr">218 </span><span class="Comment"># 121:</span>
<span id="L219" class="LineNr">219 </span>   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L220" class="LineNr">220 </span>
<span id="L221" class="LineNr">221 </span><span class="Comment"># 130:</span>
<span id="L222" class="LineNr">222 </span><span class="Comment"># keyboard interrupt handler:</span>
<span id="L223" class="LineNr">223 </span>  <span class="Comment"># prologue</span>
<span id="L224" class="LineNr">224 </span>  fa  <span class="Comment"># disable interrupts</span>
<span id="L225" class="LineNr">225 </span>  60  <span class="Comment"># push all registers to stack</span>
<span id="L226" class="LineNr">226 </span>  <span class="Comment"># acknowledge interrupt</span>
<span id="L227" class="LineNr">227 </span>  b0 20  <span class="Comment"># al &lt;- 0x20</span>
<span id="L228" class="LineNr">228 </span>  e6 20  <span class="Comment"># port 0x20 &lt;- al</span>
<span id="L229" class="LineNr">229 </span>  <span class="Comment"># read keyboard status (</span><span class="Todo">TODO</span><span class="Comment">: why bit 0? Doesn't line up with <a href="https://web.archive.org/web/20040604041507/http://panda.cs.ndsu.nodak.edu/~achapwes/PICmicro/keyboard/atkeyboard.html)">https://web.archive.org/web/20040604041507/http://panda.cs.ndsu.nodak.edu/~achapwes/PICmicro/keyboard/atkeyboard.html)</a></span>
<span id="L230" class="LineNr">230 </span><span class="Comment">#?   e4 64  # al &lt;- port 0x64</span>
<span id="L231" class="LineNr">231 </span><span class="Comment">#?   a8 01  # set zf if bit 0 (least significant) is not set</span>
<span id="L232" class="LineNr">232 </span><span class="Comment">#?   74 11  # if bit 0 is not set, skip to epilogue</span>
<span id="L233" class="LineNr">233 </span>  <span class="Comment"># read keycode into eax</span>
<span id="L234" class="LineNr">234 </span>  31 c0  <span class="Comment"># eax &lt;- xor eax;  11/direct 000/r32/eax 000/rm32/eax</span>
<span id="L235" class="LineNr">235 </span>  e4 60  <span class="Comment"># al &lt;- port 0x60</span>
<span id="L236" class="LineNr">236 </span>  <span class="Comment"># map key '1' to ascii; if eax == 2, eax = 0x31</span>
<span id="L237" class="LineNr">237 </span>  3d 02 00 00 00  <span class="Comment"># compare eax with 0x02</span>
<span id="L238" class="LineNr">238 </span>  75 0b  <span class="Comment"># if not equal, goto epilogue</span>
<span id="L239" class="LineNr">239 </span>  b8 31 0f 00 00  <span class="Comment"># eax &lt;- 0x0f31</span>
<span id="L240" class="LineNr">240 </span>  <span class="Comment"># print eax to top-left of screen (*0xb8000)</span>
<span id="L241" class="LineNr">241 </span>  89  <span class="Comment"># copy r32 to rm32</span>
<span id="L242" class="LineNr">242 </span>    05  <span class="Comment"># 00/mod/indirect 000/r32/eax 101/rm32/use-disp32</span>
<span id="L243" class="LineNr">243 </span>    <span class="Comment"># disp32</span>
<span id="L244" class="LineNr">244 </span>    00 80 0b 00
<span id="L245" class="LineNr">245 </span>  <span class="Comment"># epilogue</span>
<span id="L246" class="LineNr">246 </span>  61  <span class="Comment"># pop all registers</span>
<span id="L247" class="LineNr">247 </span>  fb  <span class="Comment"># enable interrupts</span>
<span id="L248" class="LineNr">248 </span>  cf  <span class="Comment"># iret</span>
<span id="L249" class="LineNr">249 </span>
<span id="L250" class="LineNr">250 </span><span class="Comment"># padding</span>
<span id="L251" class="LineNr">251 </span><span class="Comment"># 14f</span>
<span id="L252" class="LineNr">252 </span>                                             00
<span id="L253" class="LineNr">253 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L254" class="LineNr">254 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L255" class="LineNr">255 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L256" class="LineNr">256 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L257" class="LineNr">257 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L258" class="LineNr">258 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L259" class="LineNr">259 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L260" class="LineNr">260 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L261" class="LineNr">261 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L262" class="LineNr">262 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L263" class="LineNr">263 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L264" class="LineNr">264 </span>
<span id="L265" class="LineNr">265 </span><span class="Comment"># final 2 bytes of boot sector</span>
<span id="L266" class="LineNr">266 </span>55 aa
<span id="L267" class="LineNr">267 </span>
<span id="L268" class="LineNr">268 </span><span class="Comment">## sector 2</span>
<span id="L269" class="LineNr">269 </span><span class="Comment"># loaded by load_disk, not automatically on boot</span>
<span id="L270" class="LineNr">270 </span>
<span id="L271" class="LineNr">271 </span><span class="Comment"># offset 200 (address 0x7e00): interrupt descriptor table</span>
<span id="L272" class="LineNr">272 </span><span class="Comment"># 32 entries * 8 bytes each = 256 bytes (0x100)</span>
<span id="L273" class="LineNr">273 </span><span class="Comment"># idt_start:</span>
<span id="L274" class="LineNr">274 </span>
<span id="L275" class="LineNr">275 </span>00 00 00 00 00 00 00 00
<span id="L276" class="LineNr">276 </span>00 00 00 00 00 00 00 00
<span id="L277" class="LineNr">277 </span>00 00 00 00 00 00 00 00
<span id="L278" class="LineNr">278 </span>00 00 00 00 00 00 00 00
<span id="L279" class="LineNr">279 </span>00 00 00 00 00 00 00 00
<span id="L280" class="LineNr">280 </span>00 00 00 00 00 00 00 00
<span id="L281" class="LineNr">281 </span>00 00 00 00 00 00 00 00
<span id="L282" class="LineNr">282 </span>00 00 00 00 00 00 00 00
<span id="L283" class="LineNr">283 </span>
<span id="L284" class="LineNr">284 </span><span class="Comment"># entry 8: clock</span>
<span id="L285" class="LineNr">285 </span>  20 7d  <span class="Comment"># target[0:16] = null interrupt handler</span>
<span id="L286" class="LineNr">286 </span>  08 00  <span class="Comment"># segment selector (gdt_code)</span>
<span id="L287" class="LineNr">287 </span>  00  <span class="Comment"># unused</span>
<span id="L288" class="LineNr">288 </span>  8e  <span class="Comment"># 1/p 00/dpl 0 1110/type/32-bit-interrupt-gate</span>
<span id="L289" class="LineNr">289 </span>  00 00  <span class="Comment"># target[16:32]</span>
<span id="L290" class="LineNr">290 </span>
<span id="L291" class="LineNr">291 </span><span class="Comment"># entry 9: keyboard</span>
<span id="L292" class="LineNr">292 </span>  30 7d  <span class="Comment"># target[0:16] = keyboard interrupt handler</span>
<span id="L293" class="LineNr">293 </span>  08 00  <span class="Comment"># segment selector (gdt_code)</span>
<span id="L294" class="LineNr">294 </span>  00  <span class="Comment"># unused</span>
<span id="L295" class="LineNr">295 </span>  8e  <span class="Comment"># 1/p 00/dpl 0 1110/type/32-bit-interrupt-gate</span>
<span id="L296" class="LineNr">296 </span>  00 00  <span class="Comment"># target[16:32]</span>
<span id="L297" class="LineNr">297 </span>
<span id="L298" class="LineNr">298 </span>00 00 00 00 00 00 00 00
<span id="L299" class="LineNr">299 </span>00 00 00 00 00 00 00 00
<span id="L300" class="LineNr">300 </span>00 00 00 00 00 00 00 00
<span id="L301" class="LineNr">301 </span>00 00 00 00 00 00 00 00
<span id="L302" class="LineNr">302 </span>00 00 00 00 00 00 00 00
<span id="L303" class="LineNr">303 </span>00 00 00 00 00 00 00 00
<span id="L304" class="LineNr">304 </span>00 00 00 00 00 00 00 00
<span id="L305" class="LineNr">305 </span>00 00 00 00 00 00 00 00
<span id="L306" class="LineNr">306 </span>00 00 00 00 00 00 00 00
<span id="L307" class="LineNr">307 </span>00 00 00 00 00 00 00 00
<span id="L308" class="LineNr">308 </span>00 00 00 00 00 00 00 00
<span id="L309" class="LineNr">309 </span>00 00 00 00 00 00 00 00
<span id="L310" class="LineNr">310 </span>00 00 00 00 00 00 00 00
<span id="L311" class="LineNr">311 </span>00 00 00 00 00 00 00 00
<span id="L312" class="LineNr">312 </span>00 00 00 00 00 00 00 00
<span id="L313" class="LineNr">313 </span>00 00 00 00 00 00 00 00
<span id="L314" class="LineNr">314 </span>00 00 00 00 00 00 00 00
<span id="L315" class="LineNr">315 </span>00 00 00 00 00 00 00 00
<span id="L316" class="LineNr">316 </span>00 00 00 00 00 00 00 00
<span id="L317" class="LineNr">317 </span>00 00 00 00 00 00 00 00
<span id="L318" class="LineNr">318 </span>00 00 00 00 00 00 00 00
<span id="L319" class="LineNr">319 </span>00 00 00 00 00 00 00 00
<span id="L320" class="LineNr">320 </span><span class="Comment"># idt_end:</span>
<span id="L321" class="LineNr">321 </span>
<span id="L322" class="LineNr">322 </span><span class="Comment"># offset 300 (address 0x7f00):</span>
<span id="L323" class="LineNr">323 </span><span class="Comment"># idt_descriptor:</span>
<span id="L324" class="LineNr">324 </span>  ff 00  <span class="Comment"># idt_end - idt_start - 1</span>
<span id="L325" class="LineNr">325 </span>  00 7e 00 00  <span class="Comment"># start = idt_start</span>
<span id="L326" class="LineNr">326 </span>
<span id="L327" class="LineNr">327 </span><span class="Comment"># padding</span>
<span id="L328" class="LineNr">328 </span>                  00 00 00 00 00 00 00 00 00 00
<span id="L329" class="LineNr">329 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L330" class="LineNr">330 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L331" class="LineNr">331 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L332" class="LineNr">332 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L333" class="LineNr">333 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L334" class="LineNr">334 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L335" class="LineNr">335 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L336" class="LineNr">336 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L337" class="LineNr">337 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L338" class="LineNr">338 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L339" class="LineNr">339 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L340" class="LineNr">340 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L341" class="LineNr">341 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L342" class="LineNr">342 </span>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
<span id="L343" class="LineNr">343 </span>00 00 00 00 48 0f 00 00 00 00 00 00 00 00 00 00  <span class="Comment"># spot the 'H' with attributes</span>
<span id="L344" class="LineNr">344 </span><span class="Comment"># offset 400 (address 0x8000)</span>
<span id="L345" class="LineNr">345 </span>
<span id="L346" class="LineNr">346 </span><span class="Comment"># vim&#0058;ft=conf</span>
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->