Memory Manager

Project for CS280 Low Level Programming class.

Small Introduction

This project had as its purpose giving experience with memory management. I implemented a rudimentary object allocator by applying linked lists. The object allocator was used to allocate and deallocate fixed-sized memory blocks for clients. The idea was to replace the C++ new and delete operators.