Subversion Repositories Kolibri OS

Rev

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

Rev 1408 Rev 1434
Line 20... Line 20...
20
    .global _KernelFree
20
    .global _KernelFree
21
 
21
 
Line 22... Line 22...
22
    .global _MapIoMem
22
    .global _MapIoMem
Line -... Line 23...
-
 
23
 
-
 
24
    .global _MutexInit
-
 
25
    .global _MutexLock
-
 
26
    .global _MutexUnlock
23
 
27
 
24
    .global _PciApi
28
    .global _PciApi
25
    .global _PciRead16
29
    .global _PciRead16
26
    .global _PciRead32
30
    .global _PciRead32
27
    .global _PciRead8
31
    .global _PciRead8
28
    .global _PciWrite16
32
    .global _PciWrite16
29
    .global _PciWrite32
33
    .global _PciWrite32
Line 30... Line 34...
30
    .global _PciWrite8
34
    .global _PciWrite8
Line -... Line 35...
-
 
35
 
31
 
36
    .global _RegService
32
    .global _RegService
37
 
Line 33... Line 38...
33
 
38
    .global _SetMouseData
Line 53... Line 58...
53
    .def  _KernelFree;        .scl  2;  .type 32; .endef
58
    .def  _KernelFree;        .scl  2;  .type 32; .endef
54
 
59
 
Line 55... Line 60...
55
    .def  _MapIoMem;          .scl  2;  .type 32; .endef
60
    .def  _MapIoMem;          .scl  2;  .type 32; .endef
Line -... Line 61...
-
 
61
 
-
 
62
    .def  _MutexInit;         .scl  2;  .type 32; .endef
-
 
63
    .def  _MutexLock;         .scl  2;  .type 32; .endef
-
 
64
    .def  _MutexUnlock;       .scl  2;  .type 32; .endef
56
 
65
 
57
    .def  _PciApi;            .scl  2;  .type 32; .endef
66
    .def  _PciApi;            .scl  2;  .type 32; .endef
58
    .def  _PciRead16;         .scl  2;  .type 32; .endef
67
    .def  _PciRead16;         .scl  2;  .type 32; .endef
59
    .def  _PciRead32;         .scl  2;  .type 32; .endef
68
    .def  _PciRead32;         .scl  2;  .type 32; .endef
60
    .def  _PciRead8;          .scl  2;  .type 32; .endef
69
    .def  _PciRead8;          .scl  2;  .type 32; .endef
Line 64... Line 73...
64
 
73
 
Line 65... Line 74...
65
    .def  _RegService;        .scl  2;  .type 32; .endef
74
    .def  _RegService;        .scl  2;  .type 32; .endef
Line 66... Line 75...
66
 
75
 
-
 
76
    .def  _SetScreen;         .scl  2;  .type 32; .endef
67
    .def  _SetScreen;         .scl  2;  .type 32; .endef
77
    .def  _SetMouseData;      .scl  2;  .type 32; .endef
Line 68... Line 78...
68
    .def  _SysMsgBoardStr;    .scl  2;  .type 32; .endef
78
    .def  _SysMsgBoardStr;    .scl  2;  .type 32; .endef
69
 
79
 
Line 87... Line 97...
87
_KernelFree:
97
_KernelFree:
88
 
98
 
Line 89... Line 99...
89
_MapIoMem:
99
_MapIoMem:
Line -... Line 100...
-
 
100
 
-
 
101
_MutexInit:
-
 
102
_MutexLock:
-
 
103
_MutexUnlock:
90
 
104
 
91
_PciApi:
105
_PciApi:
92
_PciRead16:
106
_PciRead16:
93
_PciRead32:
107
_PciRead32:
94
_PciRead8:
108
_PciRead8:
95
_PciWrite16:
109
_PciWrite16:
96
_PciWrite32:
110
_PciWrite32:
Line 97... Line 111...
97
_PciWrite8:
111
_PciWrite8:
Line -... Line 112...
-
 
112
 
98
 
113
_RegService:
99
_RegService:
114
 
100
 
115
_SetMouseData:
Line 101... Line 116...
101
_SetScreen:
116
_SetScreen:
Line 123... Line 138...
123
        .ascii " -export:KernelFree"           # stdcall
138
        .ascii " -export:KernelFree"           # stdcall
124
 
139
 
Line 125... Line 140...
125
        .ascii " -export:MapIoMem"             # stdcall
140
        .ascii " -export:MapIoMem"             # stdcall
Line -... Line 141...
-
 
141
 
-
 
142
        .ascii " -export:MutexInit"            # fastcall
-
 
143
        .ascii " -export:MutexLock"            # fastcall
-
 
144
        .ascii " -export:MutexUnlock"          # fastcall
126
 
145
 
127
        .ascii " -export:PciApi"               #
146
        .ascii " -export:PciApi"               #
128
        .ascii " -export:PciRead16"            # stdcall
147
        .ascii " -export:PciRead16"            # stdcall
129
        .ascii " -export:PciRead32"            # stdcall
148
        .ascii " -export:PciRead32"            # stdcall
130
        .ascii " -export:PciRead8"             # stdcall
149
        .ascii " -export:PciRead8"             # stdcall
131
        .ascii " -export:PciWrite16"           # stdcall
150
        .ascii " -export:PciWrite16"           # stdcall
132
        .ascii " -export:PciWrite32"           # stdcall
151
        .ascii " -export:PciWrite32"           # stdcall
Line 133... Line 152...
133
        .ascii " -export:PciWrite8"            # stdcall
152
        .ascii " -export:PciWrite8"            # stdcall
Line -... Line 153...
-
 
153
 
134
 
154
        .ascii " -export:RegService"           # stdcall
135
        .ascii " -export:RegService"           # stdcall
155