Turbo C++ 3.1 wie inline asm benutzen
-
jopp, wie kann ich beim tc++ inline asm benutzen
-
int min(int V1, int V2) { asm mov ax,V1 asm cmp ax,V2 asm jle minexit asm mov ax,V2 minexit: return (_AX); }
got the idea?
geht auch z.B.
asm { pop ax; pop ds iret }
brauchst in jedem Fall den Tasm. Gibt's bei Borland umsonst.