summaryrefslogtreecommitdiff
path: root/uisimulator/win32/main.c
diff options
context:
space:
mode:
authorFelix Arends <edx@rockbox.org>2002-06-25 21:01:08 +0000
committerFelix Arends <edx@rockbox.org>2002-06-25 21:01:08 +0000
commit64bde94ecf65b752a15250fb5ff05438502c4fde (patch)
tree254e2c1c0e1168d9c6f23b84df1313477efb961e /uisimulator/win32/main.c
parent969dcb78719e3210eeb2e7fa8b37ce422f16f2f2 (diff)
downloadrockbox-64bde94ecf65b752a15250fb5ff05438502c4fde.tar.gz
rockbox-64bde94ecf65b752a15250fb5ff05438502c4fde.zip
Finally, again a working version of the win32 simulator. I re-wrote the makefile, it is much more compact now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1191 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/main.c')
-rw-r--r--uisimulator/win32/main.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/uisimulator/win32/main.c b/uisimulator/win32/main.c
deleted file mode 100644
index bf14efbaca..0000000000
--- a/uisimulator/win32/main.c
+++ /dev/null
@@ -1,25 +0,0 @@
1#include "uisw32.h"
2#include "lcd-win32.h"
3
4#define FS 6
5
6int main (void)
7{
8 int x;
9 lcd_init ();
10
11 while (1)
12 {
13 for (x = 0; x < 10; x++)
14 {
15 lcd_clear_display ();
16 lcd_puts (x, 12, "Hello World!", FS);
17 lcd_puts (x, 32, "From the", FS);
18 lcd_puts (x, 40, " Open Source ", FS);
19 lcd_puts (x, 48, "Jukebox Project", FS);
20 lcd_update ();
21 }
22 }
23
24 return 0;
25} \ No newline at end of file