wip: frame_allocator working pretty good (?)

core: remove physical allocatory
This commit is contained in:
2024-11-19 16:57:19 +01:00
parent e8fd6c55eb
commit 3315d85e0c
14 changed files with 61 additions and 471 deletions

View File

@ -4,13 +4,6 @@
void heap_cmd(char *arg)
{
if (!arg)
kprintf(KERN_INFO "You must specify an argument (phys/virt)\n");
else if (!strcmp(arg, "phys"))
show_kalloc_mem();
else if (!strcmp(arg, "virt"))
show_valloc_mem();
else
kprintf(KERN_INFO "%s: invalid argument to heap (phys/virt)\n",
arg);
(void)arg;
show_valloc_mem();
}