diff options
-rw-r--r-- | TODO | 8 | ||||
-rw-r--r-- | src/memmap.c | 2 |
2 files changed, 1 insertions, 9 deletions
@@ -1,14 +1,6 @@ Enhance shadow support: Write-enable c, d, e segments; write protect option roms before boot. -Replace hand-rolled memory allocation code with new malloc_fseg() and -malloc_high() functions. - -Refactor acpi rsdt table creation code - allow each sub-table to be -added dynamically. - -Deploy smbios in high memory. - Unify floppy functions and main disk functions? Add int 0x1589 support. diff --git a/src/memmap.c b/src/memmap.c index b8072ac9..2524e8a8 100644 --- a/src/memmap.c +++ b/src/memmap.c @@ -157,7 +157,7 @@ __malloc(struct zone_s *zone, u32 size) return (void*)newpos; } -// Allocate memory at the top of ram. +// Allocate memory at the top of 32bit ram. void * malloc_high(u32 size) { |