Changeset 433 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs
- Timestamp:
- Jun 19, 2012, 4:24:36 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/FindDPT.asm
r376 r433 43 43 ; Check Our Hard Disks 44 44 ; 45 mov ax, [RAMVARS.w DrvCntAndFirst] ; Drive count to AH, First number to AL45 mov ax, [RAMVARS.wFirstDrvAndCount] ; Drive count to AH, First number to AL 46 46 add ah, al ; One past last drive to AH 47 47 … … 97 97 98 98 %ifdef MODULE_SERIAL_FLOPPY 99 mov ax, [RAMVARS.w DrvCntAndFirst]99 mov ax, [RAMVARS.wFirstDrvAndCount] 100 100 101 101 test dl, dl -
trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/RamVars.asm
r417 r433 188 188 ALIGN JUMP_ALIGN 189 189 RamVars_GetCountOfKnownDrivesToAX: 190 mov ax, [RAMVARS.w DrvCntAndFirst]190 mov ax, [RAMVARS.wFirstDrvAndCount] 191 191 add al, ah 192 192 and ax, BYTE 7fh
Note:
See TracChangeset
for help on using the changeset viewer.