Changeset 524 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/FindDPT.asm
- Timestamp:
- Mar 14, 2013, 2:28:30 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/FindDPT.asm
r522 r524 176 176 ; IterateFindFirstDPTforIdevars 177 177 ; DL: Offset to IDEVARS to search from DPTs 178 ; SI: Offset to this callback function 178 179 ; DS:DI: Ptr to DPT to examine 179 180 ; Returns: … … 183 184 IterateFindSecondDPTforIdevars: 184 185 call IterateFindFirstDPTforIdevars 185 jc SHORT IterateFindFirstDPTforIdevars.done ; Wrong controller 186 187 ; We have found DPT for Master Drive, 188 ; next DPT is for slave drive or master for another controller 189 add di, BYTE LARGEST_DPT_SIZE 190 ; Fall to IterateFindFirstDPTforIdevars 186 jc SHORT .WrongController 187 mov si, IterateFindFirstDPTforIdevars 188 .WrongController: 189 stc 190 ret 191 191 192 192 IterateFindFirstDPTforIdevars:
Note:
See TracChangeset
for help on using the changeset viewer.