Fix nvram size, arch_init hack

git-svn-id: svn://coreboot.org/openbios/openbios-devel@160 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2007-07-08 19:56:05 +00:00
parent 8421d6221e
commit ff220a1322

View File

@@ -29,7 +29,10 @@ void arch_nvram_get()
{ {
} }
int arch_nvram_size; int arch_nvram_size()
{
return 8192;
}
void setup_timers() void setup_timers()
{ {
@@ -128,5 +131,7 @@ int openbios(void)
#endif #endif
enterforth((xt_t)PC); enterforth((xt_t)PC);
arch_init(); // XXX
printk("falling off...\n");
return 0; return 0;
} }