This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/documentation/memory.txt
2024-01-13 16:43:49 -05:00

14 lines
745 B
Text

only the first 32GiB of physical memory are considered. this can be changed
with pram_pages in paging.cpp. vram layout is as follows:
0x0000.0000.0000 - 0x0000.001f.ffff: always unmapped
0x0000.0020.0000 - 0x0000.3fbf.ffff: available to user process
0x0000.3fc0.0000 - 0x0000.3fdf.ffff: always unmapped
0x0000.3fe0.0000 - 0x0000.3fff.ffff: user stack
0x0000.4000.0000 - 0xffff.bfff.ffff: always unmapped
0xffff.c000.0000 - 0xffff.ffdf.ffff: available to kernel
0xffff.ffe0.0000 - 0xffff.ffe0.0fff: always unmapped
0xffff.ffe0.1000 - 0xffff.ffef.efff: interrupt stack
0xffff.ffef.f000 - 0xffff.fff0.0fff: always unmapped
0xffff.fff0.1000 - 0xffff.ffff.efff: syscall stack / kernel init stack
0xffff.ffff.f000 - 0xffff.ffff.ffff: always unmapped