diff options
Diffstat (limited to 'stage3/main.c')
-rw-r--r-- | stage3/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stage3/main.c b/stage3/main.c index b4ce692..3d7d7aa 100644 --- a/stage3/main.c +++ b/stage3/main.c @@ -125,6 +125,10 @@ void kmain(struct bootinfo *info) print(S("\n")); } + print(S("total heap size: ")); + print_bytes(heap_total_size()); + print(S("\n")); + print(S("gfx framebuffer at ")); print_hex((u64) bootinfo->gfx_framebuffer); print(S("-")); |