|
Windows won't load a section of a program at all, until it needs to be used. In other words, it pages in the program 0x1000 bytes at a time, only if the pages are necessary. So your data sections won't exist in memory until the program accesses them.
-Lunar
|