I am using masm 7.1 assembler. During an assembly, I am getting over 100 errors (stops assembling) all with the error code: A2163.
It starts at line number 7942. The error reads: Windows.inc (7942): error A2163: non-benign structure redefinition incorrect initializers.
Wiondows.inc is the first "Include" in my .asm file.
Why is this doing this? :'(
Thanks,
Jim
Can you post how your source roughly look like? You must have done smoething wrongly.
Yes, my main file has only one include: Asteroid.inc, which is attached. I do this because this file is going to be very big. I suppose this is not normal, is it?
Jim
[attachment deleted by admin]
You need to have:
option casemap:none
before most includes, including (excuse the pun) windows.inc.
Quote from: AeroASM on June 24, 2005, 04:59:32 PMincluding (excuse the pun)
You are on a roll recently :bg
option casemap:none is at the beginning of the .asm file. Here is the .asm file with the .inc file.
Jim
[attachment deleted by admin]
Asteroid.inc is including asteroid.inc... :bdg
roflmao!
Wow, good point! Now, I can clear up my other errors.
Thanks for responding so quickly!
Jim