1
0
Fork 0
forked from len0rd/rockbox

Gigabeat S memory management stuff.

* Moved crt0.S to imx31 subdirectory, as it was the last target using the unified file.
* DRAM is now remapped to 0x0, facilitating interrupts (which aren't done yet)


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15965 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Will Robertson 2007-12-23 12:19:40 +00:00
parent a9933ce32d
commit 32f6109fb1
5 changed files with 80 additions and 26 deletions

View file

@ -108,7 +108,7 @@ void main(void)
printf("Firmware file: %s", buf);
printf("Loading firmware");
unsigned char *loadbuffer = (unsigned char *)0x88000000;
unsigned char *loadbuffer = (unsigned char *)0x0;
int buffer_size = 1024*1024;
rc = load_firmware(loadbuffer, buf, buffer_size);