This week I didn’t have the chance to publish another blog post, because I was busy preparing an actual presentation of the contents I’ve been releasing recently here. I’m very proud to introduce you to this beautiful piece of education: Recommended if you’re just starting with computers and want to learn some important stuff about […]
allocators
Resource Management in perspective: the Heap

How do you deal with memory in Assembly? Well, you basically tell the processor to access this field in memory, and don’t tell the processor to access this other one. As I mentioned last time, from a traditional perspective memory can be managed manually or automatically. The assembly idea is where C builds onto, with added […]