Ignore:
Timestamp:
Apr 12, 2014, 12:05:10 AM (11 years ago)
Author:
Ben Rietbroek
Message:

Created Bitfield functions (auxdebug on) [2012-02-21]

WARNING!!

All commits upto and including the commit of [2012-05-13] contain
a severe bug!! Building from these sources and then disabling
the 'force LBA' feature while also using the drive-letter feature or
editing the label can DESTROY THE MBR on ALL ATTACHED DISKS!!
DO NOT DISABLE 'FORCE LBA USAGE' WHEN BUILT FROM THE THESE COMMITS!!

New

o Functions to insert/retrieve bitfields

Let's see if we can compress the hideparttable...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BOOTCODE/AIR-BOOT.ASM

    r43 r44  
    358358
    359359                ; ID String, Date (DD,MM,CC,YY), Version Number, Language ID
    360                 db      'AiRBOOT', 20h, 02h, 20h, 12h, 01h, 08h, TXT_LanguageID
     360                db      'AiRBOOT', 21h, 02h, 20h, 12h, 01h, 08h, TXT_LanguageID
    361361
    362362                ; Total Sectors Count.
     
    17431743PartitionPointers           dw  52 dup (?)  ; Maximum is 52 entries till now
    17441744PartitionPointerCount       db  ?           ; Count of total Partition Pointers
    1745 PartitionXref               db  partition_count dup (?) ; X-Reference Table
     1745PartitionXref               db  partition_count dup (?) ; X-Reference Table (holds new partnr, index is old part nr)
    17461746PartitionVolumeLetters      db  partition_count dup (?) ; Volume-Letters
    17471747                                                ;  0 - no LVM support
     
    18881888                                                ; (excluding the size word at the start).
    18891889
     1890ott         db  512 dup(?)
     1891
    18901892eobss:
    18911893
Note: See TracChangeset for help on using the changeset viewer.