Changeset 170


Ignore:
Timestamp:
Apr 8, 2017, 12:28:08 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Updated debugging state [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

Location:
trunk/bootcode
Files:
4 edited

Legend:

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

    r162 r170  
    688688
    689689IFDEF   AUX_DEBUG
    690         IF 1
     690        IF 0
    691691        pushf
    692692        pusha
     
    726726
    727727IFDEF   AUX_DEBUG
    728         IF 1
     728        IF 0
    729729        pushf
    730730        pusha
  • trunk/bootcode/regular/driveio.asm

    r169 r170  
    707707;  so users will notice that something is bad with their partition table(s)
    708708DriveIO_GotLoadError    Proc Near
     709IFDEF   AUX_DEBUG
     710        IF 1
     711        DBG_TEXT_OUT_AUX    'DriveIO_GotLoadError:'
     712        PUSHRF
     713            call    DEBUG_DumpRegisters
     714            ;~ call    AuxIO_DumpParagraph
     715            ;~ call    AuxIO_TeletypeNL
     716        POPRF
     717        ENDIF
     718ENDIF
    709719        test    byte ptr cs:[CurIO_Scanning], 1          ; Must be CS:, cause DS!=CS maybe here
    710720        jnz     InScanMode
  • trunk/bootcode/regular/partmain.asm

    r164 r170  
    10971097
    10981098IFDEF   AUX_DEBUG
    1099         IF 1
     1099        IF 0
    11001100        pushf
    11011101        pusha
  • trunk/bootcode/special/lvm.asm

    r164 r170  
    231231
    232232IFDEF   AUX_DEBUG
    233         IF 1
     233        IF 0
    234234        DBG_TEXT_OUT_AUX    'LVM_GetDriveLetter:'
    235235        PUSHRF
     
    330330
    331331IFDEF   AUX_DEBUG
    332         IF 1
     332        IF 0
    333333        DBG_TEXT_OUT_AUX    'LVM_RemoveVolLetterFromSector:'
    334334        PUSHRF
     
    371371
    372372IFDEF   AUX_DEBUG
    373         IF 1
     373        IF 0
    374374        DBG_TEXT_OUT_AUX    'LVM_DoLetterReassignment:'
    375375        PUSHRF
Note: See TracChangeset for help on using the changeset viewer.