Changeset 108


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

Compacted memory dump to fit 80 columns (debugging) [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/auxio.asm

    r92 r108  
    341341
    342342        ; Dump the index dword
    343         xor     dx,dx
     343        mov     dx, ds
    344344        mov     ax,si
    345345        call    AuxIO_TeletypeHexDWord
     346        ;~ call    AuxIO_TeletypeHexWord
    346347
    347348        ; Separate it from the dump
    348349        mov     al,' '
    349         call    AuxIO_Teletype
    350         mov     al,' '
    351         call    AuxIO_Teletype
    352         mov     al,'|'
    353         call    AuxIO_Teletype
    354         mov     al,' '
    355         call    AuxIO_Teletype
     350        ;~ call    AuxIO_Teletype
     351        ;~ mov     al,'|'
     352        mov     al,' '
     353        call    AuxIO_Teletype
     354        mov     al,' '
     355        ;~ call    AuxIO_Teletype
    356356
    357357        ; Save si for later
     
    394394        ; space separator
    395395        mov      al,' '
    396         call    AuxIO_Teletype
     396        ;~ call    AuxIO_Teletype
    397397
    398398        ; separator
    399         mov      al,'|'
     399        ;~ mov      al,'|'
     400        mov      al,' '
    400401        call    AuxIO_Teletype
    401402
    402403        ; space separator
    403404        mov      al,' '
    404         call    AuxIO_Teletype
     405        ;~ call    AuxIO_Teletype
    405406
    406407        loop    AuxIO_DumpParagraph_Next_1
    407 
    408         ; space separator
    409         mov      al,' '
    410         call    AuxIO_Teletype
    411408
    412409        ; recall pointer
Note: See TracChangeset for help on using the changeset viewer.