summaryrefslogtreecommitdiff
path: root/uisimulator/win32/kernel.c
diff options
context:
space:
mode:
authorFelix Arends <edx@rockbox.org>2002-04-25 04:41:45 +0000
committerFelix Arends <edx@rockbox.org>2002-04-25 04:41:45 +0000
commit144bc70a12f84620137ce17bc843c26b27839717 (patch)
tree1424a4d8371aed3fbc7cb7a612f553a3d2ef45c9 /uisimulator/win32/kernel.c
parent7b9581a13148957842ab53e2b28bf0a663a48980 (diff)
downloadrockbox-144bc70a12f84620137ce17bc843c26b27839717.tar.gz
rockbox-144bc70a12f84620137ce17bc843c26b27839717.zip
First Version of UISimulator for Win32
lcd and keypad working for recorder git-svn-id: svn://svn.rockbox.org/rockbox/trunk@221 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/kernel.c')
-rw-r--r--uisimulator/win32/kernel.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/uisimulator/win32/kernel.c b/uisimulator/win32/kernel.c
new file mode 100644
index 0000000000..4277190dab
--- /dev/null
+++ b/uisimulator/win32/kernel.c
@@ -0,0 +1,26 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Björn Stenberg, Felix Arends
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#include <windows.h>
21#include "kernel.h"
22
23void sleep(int ticks)
24{
25 Sleep (1000 / HZ * ticks);
26} \ No newline at end of file