aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-12-24 11:09:30 -0500
committerKevin O'Connor <kevin@koconnor.net>2009-12-24 11:09:30 -0500
commit979862ed4a922f64518d1838110ff030701c8406 (patch)
tree51ad0164795f86ef0b2a07262474324b52214c60
parent928d4dffef5c37462ea9b359354af0618e654150 (diff)
downloadseabios-hppa-979862ed4a922f64518d1838110ff030701c8406.zip
seabios-hppa-979862ed4a922f64518d1838110ff030701c8406.tar.gz
seabios-hppa-979862ed4a922f64518d1838110ff030701c8406.tar.bz2
Also report memory over 4G during init.
-rw-r--r--src/post.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/post.c b/src/post.c
index 42a27bc..6964f38 100644
--- a/src/post.c
+++ b/src/post.c
@@ -136,7 +136,8 @@ ram_probe(void)
// other page for EPT real mode pagetable
add_e820(0xfffbc000, 4*4096, E820_RESERVED);
- dprintf(1, "Ram Size=0x%08x\n", RamSize);
+ dprintf(1, "Ram Size=0x%08x (0x%08x%08x high)\n"
+ , RamSize, (u32)(RamSizeOver4G >> 32), (u32)RamSizeOver4G);
}
static void