prelim sdram

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1595 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson 2004-06-03 16:53:41 +00:00
parent 0ba0ce6b79
commit f78ba9dfa6
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include <mem.h>
struct mem_range *
sizeram(void)
{
static struct mem_range meminfo;
meminfo.basek = 0;
meminfo.sizek = 1024 * 1024; /* FIXME */
return &meminfo;
}