I've read a few things on memory management so far, but as far as implementing it goes, I don't know where to go. I read that you can use a for loop and overload your int. But that seemed to basic and not needed. Thanks for any help.
Not really, I havn't started the project yet where I will use this. I'm sort of looking for ways to implement different methods of memory management so I can understand which ones are better for which scenarios.
When you need something to last beyond the scope of where it is created, use this one: int* pointer = new(int);
When you're done with it delete pointer;
That's the whole of memory management from the programmer's point of view.
I mean, I have the basics of c++ down. what i'm trying to program is hard to explain aside from the fact that it needs to be private and hard to detect which is why im asking about ring0, and any info on that would be great.