Kernel: Fix physical address size for x86_32

Having 32 bit address space does not mean physical address space
is also only 32 bits...
This commit is contained in:
2024-03-26 19:05:34 +02:00
parent d7bf34ecd0
commit 4d1f0e77f2
2 changed files with 5 additions and 4 deletions

View File

@@ -21,6 +21,6 @@ namespace Kernel
{
using vaddr_t = uintptr_t;
using paddr_t = uintptr_t;
using paddr_t = uint64_t;
}