Changeset 178


Ignore:
Timestamp:
Nov 7, 2017, 7:12:40 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Corrected some labels in 'VideoIO_DisplayDiskInfo' [v1.1.1-testing]

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/regular/videoio.asm

    r166 r178  
    787787
    788788        ; We like to have these local for now
    789     VideoIO_DumpDiskInfo_labels     db  'DISK '
     789    VideoIO_DisplayDiskInfo_labels  db  'DISK '
    790790                                    db  'SECTORS_LBA '
    791791                                    db  'SECSIZE  '
     
    814814
    815815        ; Show the labels
    816         mov     si, offset [VideoIO_DumpDiskInfo_labels]
     816        mov     si, offset [VideoIO_DisplayDiskInfo_labels]
    817817        call    VideoIO_Print
    818818
     
    824824
    825825        ; Loop over all disks found
    826     VideoIO_DumpDiskInfo_next_disk:
     826    VideoIO_DisplayDiskInfo_next_disk:
    827827
    828828        ; Compose BIOS disk number (80h, 81h, etc)
     
    10141014        ; Process next disk if still in range
    10151015        cmp     cl, [TotalHarddiscs]
    1016         jb      VideoIO_DumpDiskInfo_next_disk
     1016        jb      VideoIO_DisplayDiskInfo_next_disk
    10171017
    10181018    ; We're done
    1019     VideoIO_DumpDiskInfo_end:
     1019    VideoIO_DisplayDiskInfo_end:
    10201020
    10211021        ; Restore video state
Note: See TracChangeset for help on using the changeset viewer.