Reputation: 5541
It is said that sometimes the loader loads the exe at an address which is different than the one assumed by the linker. What all could be the cases when loader does so??
Upvotes: 0
Views: 270
Reputation: 6314
Basically, this takes place in the following situations:
FLG_LDR_TOP_DOWN
global flag has been set, which forces modules to be loaded at the highest possible address.Upvotes: 2