SaturnRingLibrary 0.9
SGL wrapper
 
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
Loading...
Searching...
No Matches

◆ hwnew

#define hwnew   new
related

new keyword for high work RAM

class MyFirstThing { }
void main()
{
// Allocates MyFirstThing in the high RAM
MyFirstThing* second = hwnew MyFirstThing();
// For High RAM, keywords new or hwnew can be both used
MyFirstThing* second = new MyFirstThing();
}
#define hwnew
new keyword for high work RAM
Definition srl_memory.hpp:1000