Subversion Repositories Kolibri OS

Rev

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

Rev 3935 Rev 4066
Line 5... Line 5...
5
;; Copyright (C) KolibriOS team 2004-2013. All rights reserved. ;;
5
;; Copyright (C) KolibriOS team 2004-2013. All rights reserved. ;;
6
;; Distributed under the terms of the new BSD license.          ;;
6
;; Distributed under the terms of the new BSD license.          ;;
7
;;                                                              ;;
7
;;                                                              ;;
8
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line -... Line 9...
-
 
9
 
-
 
10
; Future jobs for driver, in order of preference:
-
 
11
;     * clean up existing extents support.
-
 
12
;     * add b-tree directories support.
-
 
13
;     * add long file support.
-
 
14
;     * add journal support.
-
 
15
;     * add minor features that come with ext3/4.
9
 
16
 
Line 10... Line 17...
10
; Recommended move to some kernel-wide bitmap handling code (with a bit of abstraction, of course).
17
; Recommended move to some kernel-wide bitmap handling code (with a bit of abstraction, of course).
11
 
18
 
12
;---------------------------------------------------------------------
19
;---------------------------------------------------------------------
Line 84... Line 91...
84
        ; If 0, then the original value would be 0xFFFFFFFF, hence no free bits.
91
        ; If 0, then the original value would be 0xFFFFFFFF, hence no free bits.
85
        jz      @F
92
        jz      @F
Line 86... Line 93...
86
 
93
 
87
        ; We found the value. Let's return with it.
94
        ; We found the value. Let's return with it.
-
 
95
        add     esp, 4
88
        add     esp, 4
96
 
89
        add     eax, edx
97
        add     eax, edx
Line 90... Line 98...
90
        jmp     .return
98
        jmp     .return
91
        
99