RC11 preliminary update - includes

git-svn-id: svn://kolibrios.org@1964 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2011-06-24 10:45:58 +00:00
parent bd08fd3876
commit 52aacb57ed
39 changed files with 2285 additions and 1026 deletions

View File

@@ -1,6 +1,7 @@
/* stub */
static inline void mdelay(unsigned long time)
/*
static inline void mdelay(u32_t time)
{
time /= 10;
if(!time) time = 1;
@@ -13,7 +14,7 @@ static inline void mdelay(unsigned long time)
};
static inline void udelay(unsigned long delay)
static inline void udelay(u32_t delay)
{
if(!delay) delay++;
delay*= 500;
@@ -26,4 +27,4 @@ static inline void udelay(unsigned long delay)
:::"eax","ebx","ecx","edx" );
}
}
*/