Subversion Repositories Kolibri OS

Rev

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

Rev 9715 Rev 9831
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2022. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2022. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 9715 $
8
$Revision: 9831 $
9
 
9
 
10
 
10
 
Line 361... Line 361...
361
SYSTEM_RESTART     = 4
361
SYSTEM_RESTART     = 4
Line 362... Line 362...
362
 
362
 
Line 363... Line 363...
363
BLIT_CLIENT_RELATIVE = 0x20000000
363
BLIT_CLIENT_RELATIVE = 0x20000000
364
 
364
 
365
struct SYSCALL_STACK
365
struct SYSCALL_STACK
366
        _eip            dd ?
366
        eip     dd ?    ;  +0
367
        _edi            dd ?    ;  +4
367
        edi     dd ?    ;  +4
368
        _esi            dd ?    ;  +8
368
        esi     dd ?    ;  +8
369
        _ebp            dd ?    ; +12
369
        ebp     dd ?    ; +12
370
        _esp            dd ?    ; +16
370
        esp     dd ?    ; +16
371
        _ebx            dd ?    ; +20
371
        ebx     dd ?    ; +20
372
        _edx            dd ?    ; +24
372
        edx     dd ?    ; +24
373
        _ecx            dd ?    ; +28
373
        ecx     dd ?    ; +28
Line 374... Line 374...
374
        _eax            dd ?    ; +32
374
        eax     dd ?    ; +32
375
ends
375
ends
376
 
376