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

Added more debug hooks [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/bootmenu.asm

    r102 r117  
    691691        mov     ah, [si+LocIPT_SystemID]
    692692
    693     IFDEF   AUX_DEBUG
    694         mov     al, ' '
    695         call    VideoIO_PrintSingleChar
    696         mov     al, ah
    697         call    VideoIO_PrintHexByte
    698         mov     al, ' '
    699         call    VideoIO_PrintSingleChar
    700     ENDIF
     693IFDEF   AUX_DEBUG
     694        IF 1
     695        pushf
     696        pusha
     697            mov     al, ' '
     698            call    VideoIO_PrintSingleChar
     699            mov     al, ah
     700            call    VideoIO_PrintHexByte
     701            mov     al, ' '
     702            call    VideoIO_PrintSingleChar
     703        popa
     704        popf
     705        ENDIF
     706ENDIF
    701707
    702708        mov     al, ah
     
    723729        mov     al, [si+25h]
    724730
    725     IFDEF   AUX_DEBUG
    726         call    VideoIO_PrintHexByte
    727     ENDIF
     731IFDEF   AUX_DEBUG
     732        IF 1
     733        pushf
     734        pusha
     735            call    VideoIO_PrintHexByte
     736        popa
     737        popf
     738        ENDIF
     739ENDIF
    728740
    729741        mov     dh,al
Note: See TracChangeset for help on using the changeset viewer.