News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

PagePool - Changes into .data, delay my program

Started by eterzzo, May 17, 2011, 08:28:53 PM

Previous topic - Next topic

eterzzo

My program delay 23 seconds.  I move fields inside my .data (In order that my program get ordered)
but my program delay now 30 seconds, I revert operation and delay is again 23 seconds.
Why affected the run time a movement in .data. (pagepool?)
Thanks

qWord

FPU in a trice: SmplMath
It's that simple!

MichaelW

If the delay is when you are assembling, and you have defined a large array in the .data or .data? section, then you are seeing the effects of a well-know MASM bug. There is a trick for getting around this problem, but in general you should use memory allocated at run time for such arrays.
eschew obfuscation