Boot from the correct address

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7015 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-07-04 22:42:24 +00:00
parent d6ab723584
commit 0f381854cf

View file

@ -141,10 +141,10 @@ void start_firmware(void)
/* Reset the cookie for the crt0 crash check */
asm(" move.l #0,%d0");
asm(" move.l %d0,0x10017ffc");
asm(" move.l #0x30000000,%d0");
asm(" move.l #0x31000000,%d0");
asm(" movec.l %d0,%vbr");
asm(" move.l 0x30000000,%sp");
asm(" move.l 0x30000004,%a0");
asm(" move.l 0x31000000,%sp");
asm(" move.l 0x31000004,%a0");
asm(" jmp (%a0)");
}