1
0
Fork 0
forked from len0rd/rockbox

merge a big part of the unofficial gigabeat cvs back. Includes working bootloader and rockbox with audio.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11850 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Marcoen Hirschberg 2006-12-29 02:49:12 +00:00
parent 995a804def
commit 295367686e
31 changed files with 1506 additions and 196 deletions

View file

@ -86,7 +86,15 @@ void cpu_idle_mode(bool on_off)
void system_reboot(void) {
}
void system_init(void) {
void system_init(void)
{
/* Turn off un-needed devices */
/* Turn off all of the UARTS */
CLKCON &= ~( (1<<10) | (1<<11) |(1<<12) );
/* Turn off AC97 and Camera */
CLKCON &= ~( (1<<19) | (1<<20) );
}
#endif