Changeset 433 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs


Ignore:
Timestamp:
Jun 19, 2012, 4:24:36 PM (12 years ago)
Author:
aitotat@…
google:author:
aitotat@gmail.com
Message:

Changes to XTIDE Universal BIOS:

  • Cleaned AH=00h a bit.
Location:
trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/FindDPT.asm

    r376 r433  
    4343; Check Our Hard Disks
    4444;
    45     mov     ax, [RAMVARS.wDrvCntAndFirst]       ; Drive count to AH, First number to AL
     45    mov     ax, [RAMVARS.wFirstDrvAndCount]     ; Drive count to AH, First number to AL
    4646    add     ah, al                              ; One past last drive to AH
    4747
     
    9797
    9898%ifdef MODULE_SERIAL_FLOPPY
    99     mov     ax, [RAMVARS.wDrvCntAndFirst]
     99    mov     ax, [RAMVARS.wFirstDrvAndCount]
    100100
    101101    test    dl, dl
  • trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/RamVars.asm

    r417 r433  
    188188ALIGN JUMP_ALIGN
    189189RamVars_GetCountOfKnownDrivesToAX:
    190     mov     ax, [RAMVARS.wDrvCntAndFirst]
     190    mov     ax, [RAMVARS.wFirstDrvAndCount]
    191191    add     al, ah
    192192    and     ax, BYTE 7fh
Note: See TracChangeset for help on using the changeset viewer.