Allocating Frames

from blog Writing an OS in Rust, | ↗ original
In this post we create an allocator that provides free physical frames for a future paging module. To get the required information about available and used memory we use the Multiboot information structure. Additionally, we improve the panic handler to print the corresponding message and source line. The full source code is available on GitHub....