Andrew Wan wrote:
....
> extern void ASMClsV();
>
> Am trying to link using Borland C++
The "++" may be causing the compiler to "decorate" (mutilate) the name.
I'm not sure of the exact syntax, but try something like:
extern "C" void ASMClsV();
You'll still need to call it "_ASMClsV" in the .asm file.
(dropped c.l.c. from the reply - pretty sure they don't want to hear it :)
Best,
Frank