You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but it seems that the symbol is just defined for the source file currently being compiled.
I was wondering if VisualMASM is running an instance of ML for every .asm file instead of passing in all .asm files to a single instance of the compiler?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Visual MASM actually creates a temporary list file (@) and passes that into ML. After the assembly and build process is completed, it removes this temporary file. So, even if you have hundreds of assembly files, it is one process.
If you need to add additional files to the assembly / build process, you can add these in the project options of your project.
Hi, I'm new to VisualMASM and I'm having problems while trying to compile a multi-modular project.
I have an .inc file which contains an include guard like this:
but it seems that the symbol is just defined for the source file currently being compiled.
I was wondering if VisualMASM is running an instance of ML for every .asm file instead of passing in all .asm files to a single instance of the compiler?
Thanks in advance.
The text was updated successfully, but these errors were encountered: