Subversion Repositories Kolibri OS

Rev

Rev 4305 | Rev 4850 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4305 Rev 4418
Line 1260... Line 1260...
1260
        call    free
1260
        call    free
1261
        pop     ebx
1261
        pop     ebx
1262
.nothing:
1262
.nothing:
1263
        retn    4
1263
        retn    4
1264
endp
1264
endp
-
 
1265
 
-
 
1266
; Helper function for USB2 scheduler.
-
 
1267
; in: eax -> usb_hub
-
 
1268
; out: ecx = TT think time for the hub in FS-bytes
-
 
1269
proc usb_get_tt_think_time
-
 
1270
        movzx   ecx, [eax+usb_hub.HubCharacteristics]
-
 
1271
        shr     ecx, 5
-
 
1272
        and     ecx, 3
-
 
1273
        inc     ecx
-
 
1274
        ret
-
 
1275
endp