magicrain@hotmail.com Posted July 15, 2009 Posted July 15, 2009 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?
high6 Posted July 15, 2009 Posted July 15, 2009 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;
magicrain@hotmail.com Posted July 15, 2009 Author Posted July 15, 2009 (edited) Its for a algo thx for the idea i will see to get it work. SOLVED Edited July 15, 2009 by war
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now