Posted July 15, 200916 yr Hey folks i need some help with a asm line...how i could do that in delphi ?SAR EAX,1ROL EAX,3XCHG EAX,ESI < i need that in delphi but how :S?
July 15, 200916 yr Hey folks i need some help with a asm line...how i could do that in delphi ?SAR EAX,1 ROL EAX,3 XCHG EAX,ESI < i need that in delphi but how :S?Why do you need XCHG?All it is, is"Exchanges contents of source and destination."Either way it is a simple(C++ but you get the idea...)int eax = x;int esi = x;int holder;holder = eax;eax = esi;esi = holder;
July 15, 200916 yr Author Its for a algo thx for the idea i will see to get it work. SOLVED Edited July 15, 200916 yr by war
Create an account or sign in to comment