Hi,
i try to make a simple program in C to control a lcd. I need to make two "nop" in one function but i don't know the syntax . Always, the compiler make a assembler error and i can't run the program.
function:
void Toggle_A_Lcd(void){
LcdControl |= En;
asm (nop);
asm (nop);
LcdControl &=~ En;
}
somebody could tell me how make this, please?
thanks