Hi,
I wrote a function in 'C' as follows.
void myfunc(int x,int y)
{
asm mov ah , 0x02
asm mov bh , 0x0
asm mov dh , y <=Error Here
asm mov dl , x <=Error Here
}
It shows the error "Invalid use of Opcode and Operand". What is the reason?
Regards.