Hello,
A standard prologue code, like the following
push ebp
mov ebp,esp
sub esp,4Ch
push ebx
push esi
push edi
lea edi,[ebp-4Ch]
Why 4C?
how ...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10146896.html
Let's see this:
int* p;
int e=100;
p=&e;
when I debug it and disassemble it using vc++ 5.0, it looks like:
23: int* p;
24: int e=100;
00401214 mov dword ptr [e],64h
25: p=&e;
0040...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10171005.html
Zones:
C++Date Answered: 06/13/1999 Grade: A Views: 0
HI..
LEA does't work in my NASM, but it is valid operand..
Error message is "invalid combination of opcode and operand"
SEGMENT code PUBLIC
LEA DX, MSG1
SEGMENT data PUBLIC
MSG1 DB...
http://www.experts-exchange.com/Programming/Languages/Assembly/Q_20723746.html
Zones:
AssemblyDate Answered: 02/07/2004 Grade: A Views: 13
hello
recently,i am studying the Doung lea's thread pool.and plan introduce it to my projects,i write following code to test the "PooledExecutor":
public class MyTestClient {
public static voi...
http://www.experts-exchange.com/Programming/Languages/Q_21099465.html
Zones:
LanguagesDate Answered: 09/17/2004 Grade: A Views: 0
This has been puzzling me for a while - of what use is the LEA instruction?
To me it just looks like a MOV instruction which can take a relatively-complex second argument - nothing that can't be...
http://www.experts-exchange.com/Programming/Programming_Languages/Assembly/Q_21319697.html
Zones:
AssemblyDate Answered: 02/19/2005 Grade: A Views: 430
I need to calculate the difference of two numbers ex: 90-18 = 72
I am able to code the proram with single digits but I need help with double digits. This is coded in the x8086. Any help will be ap...
http://www.experts-exchange.com/Programming/Languages/Assembly/Q_20593278.html
Zones:
AssemblyDate Answered: 04/23/2003 Grade: A Views: 0
the difference between lea and mov, and the meaning of rep stos?
http://www.experts-exchange.com/Programming/Languages/Assembly/Q_20608117.html
Zones:
AssemblyDate Answered: 05/07/2003 Grade: A Views: 6