I am using BloodshedDev-CPP GNU. Assembly codes are written in this format :
int Variable=45; /*a random value*/
__asm(mov %ax,_Degisken);
The crap compiler uses 'AT&T Assembly Syntax'. The problem is I don't know that AT&T stuff and I want to call some interrupts in my program.
In the normal assambly language, interrupts are called with "int" keyword. But what about AT&T?