Subversion Repositories Kolibri OS

Rev

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

Rev 4572 Rev 4778
Line 4... Line 4...
4
;; Copyright (C) MenuetOS 2000-2004 Ville Mikael Turjanmaa      ;;
4
;; Copyright (C) MenuetOS 2000-2004 Ville Mikael Turjanmaa      ;;
5
;; Distributed under terms of the GNU General Public License    ;;
5
;; Distributed under terms of the GNU General Public License    ;;
6
;;                                                              ;;
6
;;                                                              ;;
7
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 8... Line 8...
8
 
8
 
Line 9... Line 9...
9
$Revision: 4572 $
9
$Revision: 4778 $
10
 
10
 
11
;==============================================================================
11
;==============================================================================
Line 24... Line 24...
24
  common
24
  common
25
    name#.sizeof.#table_name = $ - name#.#table_name
25
    name#.sizeof.#table_name = $ - name#.#table_name
26
}
26
}
Line 27... Line 27...
27
 
27
 
28
uglobal
28
uglobal
29
  common_colours rd 32
29
  common_colours rd 48
30
  draw_limits    RECT
30
  draw_limits    RECT
Line 31... Line 31...
31
endg
31
endg
32
 
32
 
Line 171... Line 171...
171
;------------------------------------------------------------------------------
171
;------------------------------------------------------------------------------
172
align 4
172
align 4
173
syscall_display_settings.02:
173
syscall_display_settings.02:
174
        dec     ebx
174
        dec     ebx
175
        mov     esi, ecx
175
        mov     esi, ecx
176
        and     edx, 127
176
        and     edx, 255
177
        mov     edi, common_colours
177
        mov     edi, common_colours
178
        mov     ecx, edx
178
        mov     ecx, edx
179
        rep movsb
179
        rep movsb
180
        mov     [windowtypechanged], ebx
180
        mov     [windowtypechanged], ebx
181
        ret
181
        ret
182
;------------------------------------------------------------------------------
182
;------------------------------------------------------------------------------
183
align 4
183
align 4
184
syscall_display_settings.03:
184
syscall_display_settings.03:
185
        mov     edi, ecx
185
        mov     edi, ecx
186
        and     edx, 127
186
        and     edx, 255
187
        mov     esi, common_colours
187
        mov     esi, common_colours
188
        mov     ecx, edx
188
        mov     ecx, edx
189
        rep movsb
189
        rep movsb
190
        ret
190
        ret
191
;------------------------------------------------------------------------------
191
;------------------------------------------------------------------------------