1
0
Fork 0
forked from len0rd/rockbox

Get the Nano2G bootloader running - it now runs and displays a logo on one type of Nano2G LCD.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21900 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2009-07-16 00:57:02 +00:00
parent c30d509f34
commit 0270e4c591
3 changed files with 20 additions and 4 deletions

View file

@ -54,4 +54,5 @@ lyre_proto1.c
show_logo.c
#elif defined(IPOD_NANO2G)
ipodnano2g.c
show_logo.c
#endif

View file

@ -7,7 +7,7 @@
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2009 by ???? [to be completed by first author]
* Copyright (C) 2009 by Dave Chapman
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -46,8 +46,15 @@
char version[] = APPSVERSION;
/* Show the Rockbox logo - in show_logo.c */
extern int show_logo(void);
void main(void)
{
lcd_init();
show_logo();
/* Do nothing... */
while(1);
}