Index: minilibc/_RTC_CheckEsp_x86.asm |
— | — | @@ -1,29 +0,0 @@ |
2 | | -; DXGL
|
3 | | -; Copyright (C) 2012 William Feely
|
4 | | -
|
5 | | -; This library is free software; you can redistribute it and/or
|
6 | | -; modify it under the terms of the GNU Lesser General Public
|
7 | | -; License as published by the Free Software Foundation; either
|
8 | | -; version 2.1 of the License, or (at your option) any later version.
|
9 | | -
|
10 | | -; This library is distributed in the hope that it will be useful,
|
11 | | -; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 | | -; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13 | | -; Lesser General Public License for more details.
|
14 | | -
|
15 | | -; You should have received a copy of the GNU Lesser General Public
|
16 | | -; License along with this library; if not, write to the Free Software
|
17 | | -; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18 | | -
|
19 | | -.model flat, c
|
20 | | -.code
|
21 | | -
|
22 | | -_RTC_CheckEsp PROC
|
23 | | - jne esp_wrong
|
24 | | - ret
|
25 | | -esp_wrong:
|
26 | | - int 3
|
27 | | - ret
|
28 | | -_RTC_CheckEsp ENDP
|
29 | | -
|
30 | | -end |
\ No newline at end of file |
Index: minilibc/minilibc.vcxproj |
— | — | @@ -96,7 +96,7 @@ |
97 | 97 | <CustomBuild Include="_itoa_x86.asm">
|
98 | 98 | <FileType>Document</FileType>
|
99 | 99 | </CustomBuild>
|
100 | | - <CustomBuild Include="_RTC_CheckEsp_x86.asm">
|
| 100 | + <CustomBuild Include="rtcapi_x86.asm">
|
101 | 101 | <FileType>Document</FileType>
|
102 | 102 | </CustomBuild>
|
103 | 103 | </ItemGroup>
|
Index: minilibc/minilibc.vcxproj.filters |
— | — | @@ -30,7 +30,7 @@ |
31 | 31 | <CustomBuild Include="_itoa_x86.asm">
|
32 | 32 | <Filter>Source Files</Filter>
|
33 | 33 | </CustomBuild>
|
34 | | - <CustomBuild Include="_RTC_CheckEsp_x86.asm">
|
| 34 | + <CustomBuild Include="rtcapi_x86.asm">
|
35 | 35 | <Filter>Source Files</Filter>
|
36 | 36 | </CustomBuild>
|
37 | 37 | </ItemGroup>
|
Index: minilibc/rtcapi_x86.asm |
— | — | @@ -0,0 +1,37 @@ |
| 2 | +; DXGL
|
| 3 | +; Copyright (C) 2012 William Feely
|
| 4 | +
|
| 5 | +; This library is free software; you can redistribute it and/or
|
| 6 | +; modify it under the terms of the GNU Lesser General Public
|
| 7 | +; License as published by the Free Software Foundation; either
|
| 8 | +; version 2.1 of the License, or (at your option) any later version.
|
| 9 | +
|
| 10 | +; This library is distributed in the hope that it will be useful,
|
| 11 | +; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 | +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
| 13 | +; Lesser General Public License for more details.
|
| 14 | +
|
| 15 | +; You should have received a copy of the GNU Lesser General Public
|
| 16 | +; License along with this library; if not, write to the Free Software
|
| 17 | +; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
| 18 | +
|
| 19 | +.model flat, c
|
| 20 | +.code
|
| 21 | +
|
| 22 | +_RTC_CheckEsp PROC
|
| 23 | + jne esp_wrong
|
| 24 | + ret
|
| 25 | +esp_wrong:
|
| 26 | + int 3
|
| 27 | + ret
|
| 28 | +_RTC_CheckEsp ENDP
|
| 29 | +
|
| 30 | +_RTC_InitBase PROC
|
| 31 | + ret
|
| 32 | +_RTC_InitBase ENDP
|
| 33 | +
|
| 34 | +_RTC_Shutdown PROC
|
| 35 | + ret
|
| 36 | +_RTC_Shutdown ENDP
|
| 37 | +
|
| 38 | +end |
\ No newline at end of file |