diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-12-24 11:09:30 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-12-24 11:09:30 -0500 |
commit | 979862ed4a922f64518d1838110ff030701c8406 (patch) | |
tree | 51ad0164795f86ef0b2a07262474324b52214c60 /src/post.c | |
parent | 928d4dffef5c37462ea9b359354af0618e654150 (diff) | |
download | seabios-979862ed4a922f64518d1838110ff030701c8406.tar.gz |
Also report memory over 4G during init.
Diffstat (limited to 'src/post.c')
-rw-r--r-- | src/post.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |