![]() |
sponsored links |
|
|
sponsored links
|
|
|
2
12th March 13:49
External User
Posts: 1
|
If you have 16-bit MASM code (which uses segments), you cannot link it with
object code from 32-bit compilers. 16-bit and 32-bit executes in very different environments. You cannot mix them (well, at least the linker cannot). So, assuming that you really do have 16-bit MASM code, your choices are (1) find a 16-bit compiler to compiler your C code, or (2) port the MASM code to 32-bit. -- - Tim Roberts, timr@probo.com Providenza & Boekelheide, Inc. |
|
|