- Should it be calling virtual or physical allocator?
- When should I create the heap? Before or after enabling paging?
- Any small and easy to understand existing code?
Search found 2 matches
- Tue Dec 02, 2008 4:05 am
- Forum: Beginning OS Development
- Topic: Memory allocator = done, memory management = ?
- Replies: 3
- Views: 21161
- Thu Nov 27, 2008 5:34 am
- Forum: Beginning OS Development
- Topic: Memory allocator = done, memory management = ?
- Replies: 3
- Views: 21161
Memory allocator = done, memory management = ?
I've implemented memory allocators both physical and virtual as in tutorial 17 & 18 (with a "little" modification, of course). The question is, how do I manage them? I mean, if I have a function like: function GetMem(Size: LongWord): Pointer; how do I connect it with AllocPage (corresponds to your v...