]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Made the LBA48 example clearer.
authorMichael Brown <mcb30@etherboot.org>
Sun, 21 May 2006 16:02:38 +0000 (16:02 +0000)
committerMichael Brown <mcb30@etherboot.org>
Sun, 21 May 2006 16:02:38 +0000 (16:02 +0000)
src/include/gpxe/ata.h

index 3cc01cf8c27169406cec2a7166b7fb0075cffe80..5aeb82e6c612d50da76e5e7975234baa2af2b877 100644 (file)
  * set" (LBA48), in which case each of these byte-wide registers is
  * actually a two-entry FIFO, and the "previous" byte pushed into the
  * FIFO is used as the corresponding high-order byte.  So, to set up
- * the 48-bit address 0x12345678abcd, you would issue
+ * the 48-bit address 0x123456abcdef, you would issue
  *
  *     0x56 -> LBA Low register
- *     0xcd -> LBA Low register
+ *     0xef -> LBA Low register
  *     0x34 -> LBA Mid register
- *     0xab -> LBA Mid register
+ *     0xcd -> LBA Mid register
  *     0x12 -> LBA High register
- *     0x78 -> LBA High register
+ *     0xab -> LBA High register
  *
  * This structure encapsulates this information by providing a single
  * 64-bit integer in native byte order, unioned with bytes named so