Changeset 158
- Timestamp:
- Apr 8, 2017, 12:27:59 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/special/lvm.asm
r156 r158 225 225 ; IN : SI - Pointer to IPT entry for partition 226 226 ; OUT : AL - LVM drive-letter 227 ; : SI - Pointer to LVM entry in loaded LVM record228 227 ; : CF=1 - No valid LVM sector found, AL not valid 229 228 ; NOTE : Besides the drive-letter, AL can be 0 (LVM hidden) or '*' (LVM auto) 230 229 ;------------------------------------------------------------------------------ 231 LVM_GetDriveLetter Proc Near Uses bx cx dx di230 LVM_GetDriveLetter Proc Near Uses bx cx dx si di 232 231 233 232 IFDEF AUX_DEBUG … … 275 274 ; Indicate no LVM drive-letter found 276 275 xor ax, ax 277 mov si, ax278 276 stc 279 277 … … 303 301 ; IN : SI - Pointer to IPT entry for partition 304 302 ; : AL - LVM drive-letter 305 ; OUT : SI - Pointer to LVM entry in loaded (and saved) LVM record 306 ; : AL - LVM drive-letter 307 ; : CF=1 - No valid LVM sector found, AL not valid 303 ; OUT : CF=1 - No valid LVM sector found, AL was not valid 308 304 ; NOTE : Besides the drive-letter, AL can be 0 (LVM hidden) or '*' (LVM auto) 309 305 ;------------------------------------------------------------------------------ 310 LVM_SetDriveLetter Proc Near Uses bx cx dx di306 LVM_SetDriveLetter Proc Near Uses bx cx dx si di 311 307 312 308 ; THIS IS A DUMMY FUNCTION RETURNING FAILURE … … 320 316 ; Just indicate failure and return 321 317 xor ax, ax 322 mov si, ax323 318 stc 324 319 ret
Note:
See TracChangeset
for help on using the changeset viewer.