Example:
.code
DestMem db 0024A000h dup (0)
ml.exe will not respondm.
How to solve???
Microsoft (R) Macro Assembler Version 6.15.8803
Copyright (C) Microsoft Corp 1981-2000. All rights reserved.
See here (http://www.masm32.com/board/index.php?topic=10435.msg76444#msg76444), point 2.
Thank you~
you may be able to use the ORG directive if the data is uninitialized
or - you can just wait for it to finish - lol
it will finish, eventually
Quote from: mywind
How to solve???
Stop using large static allocations, and allocate it dynamically.
Hi mywind,
clive is right. VirtualAlloc,HeapAlloc and GlobalAlloc are some functions to allocate memory dynamically.