jumping to payload

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1280 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson 2003-11-15 15:11:55 +00:00
parent e14d10930f
commit c70b5d2f3a
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ extern unsigned _iseg[];
extern unsigned _liseg[];
extern unsigned _eliseg[];
void (*hardwaremain)(int) = (void (*)(int))_iseg;
void (*payload)(void) = (void (*)(void))_iseg;
/*
* At this point we're running out of flash with our
@ -40,5 +40,5 @@ void ppc_main(void)
*to++ = *from++;
}
hardwaremain(0);
payload();
}