How to fix the "undefined symbol _main in module c0.ASM" error in TurboC++3?
#include
void palette(int pnum)
{
union REGS r ;
r.h.bh = 1 ; /* code for mode 4 */
r.h.bl = pnum ;
r.h.ah = 0xb ;
int86(0x10, &r, &r) ;
}
Why the above program has no problem in compiling but gives this error in the linker?
error:"undefined symbol _main in module c0.ASM"
void palette(int pnum)
{
union REGS r ;
r.h.bh = 1 ; /* code for mode 4 */
r.h.bl = pnum ;
r.h.ah = 0xb ;
int86(0x10, &r, &r) ;
}
Why the above program has no problem in compiling but gives this error in the linker?
error:"undefined symbol _main in module c0.ASM"
Comments
the pallette is a custom class you need to call from main. I'm no expert though, I just started learning C++