Changeset 395 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Initialization
- Timestamp:
- Apr 18, 2012, 6:04:48 PM (13 years ago)
- google:author:
- aitotat@gmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Src/Initialization
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Initialization/DetectDrives.asm
r392 r395 154 154 StartDetectionWithDriveSelectByteInBHandStringInCX: 155 155 call DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP 156 %ifdef MODULE_HOTKEYS 156 157 call HotkeyBar_UpdateDuringDriveDetection 158 %endif 157 159 ; Fall to .ReadAtaInfoFromHardDisk 158 160 -
trunk/XTIDE_Universal_BIOS/Src/Initialization/DetectPrint.asm
r392 r395 206 206 mov bp, sp 207 207 208 %ifdef MODULE_HOTKEYS 209 208 210 call DriveXlate_ToOrBack ; DL = Untranslated Drive number 209 211 mov dh, dl … … 217 219 push dx 218 220 219 call ConvertDriveLetterInDLtoDriveNumber ; Restore DL 221 call HotkeyBar_ConvertDriveLetterInDLtoDriveNumber ; Restore DL 222 223 %else 224 ePUSH_T ax, ' ' ; No drive translation so print space 225 226 ; Get boot drive letters 227 call FloppyDrive_GetCountToAX 228 mov ah, 'A' ; AH = First Floppy Drive letter (always 'A') 229 add al, ah 230 MAX_U al, 'C' ; AL = First Hard Drive letter ('C', 'D', or 'E') 231 test dl, dl 232 eCMOVNS al, ah 233 push ax 234 235 %endif ; MODULE_HOTKEYS 220 236 221 237 mov si, g_szTryToBoot
Note:
See TracChangeset
for help on using the changeset viewer.