feat: some refactors

This commit is contained in:
2021-02-02 22:35:28 +01:00
parent 4673a23db7
commit e8816cfdfd
10 changed files with 162 additions and 57 deletions

View File

@@ -107,7 +107,7 @@ void use_mmap_entry(struct multiboot_mmap_entry *entry) {
}
}
void init_mmap(struct multiboot_mmap_entry *entries, u32 count) {
void init_mmap_multiboot(struct multiboot_mmap_entry *entries, u32 count) {
for (u32 i = 0; i < count; ++i) {
use_mmap_entry(&entries[i]);
}