hw_x86_64_muen: Adjust _ram_regions function

The available RAM region starts at 25 MiB, not 2 MiB. Also, increase the
region size to 256 MiB.
This commit is contained in:
Reto Buerki 2016-02-18 15:24:06 +01:00 committed by Christian Helmuth
parent ac478081c3
commit ed54bb2724
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ Native_region * Platform::_ram_regions(unsigned const i)
{
static Native_region _regions[] =
{
{ 2*1024*1024, 1024*1024*254 }
{ 25*1024*1024, 256*1024*1024 }
};
return i < sizeof(_regions)/sizeof(_regions[0]) ? &_regions[i] : 0;
}