|
-
Jul 9th, 2001, 09:48 PM
#1
I dont think so. If im wrong here, someone correct me.
This...
Code:
mov edx, 100082E0
mov ecx, dword ptr [edx + 0x04]
And this...
Code:
mov ecx, dword ptr [100082E4]
Are the same.
-
Jul 31st, 2003, 04:31 PM
#2
Fanatic Member
"Can't" and "shouldn't" are two totally separate things.
All questions should be answered. All answers should be true. That is why I post.
-
Aug 1st, 2003, 01:16 AM
#3
The first takes longer
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Aug 1st, 2003, 03:44 PM
#4
Fanatic Member
True, but essentially they do the same thing (muck like LOOP and DEC / JNZ )
"Can't" and "shouldn't" are two totally separate things.
All questions should be answered. All answers should be true. That is why I post.
-
Aug 4th, 2003, 07:02 AM
#5
Yes, except that one effects two registers.
And for the LOOP / DEC/JNZ, they are also different in that DEC affects the flags.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Aug 4th, 2003, 02:08 PM
#6
Fanatic Member
Which one affects two registers?
"Can't" and "shouldn't" are two totally separate things.
All questions should be answered. All answers should be true. That is why I post.
-
Aug 5th, 2003, 01:13 AM
#7
mov edx, 100082E0
mov ecx, dword ptr [edx + 0x04]
Affects both edx and ecx, while the other only affects ecx.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Aug 5th, 2003, 02:25 PM
#8
Fanatic Member
Ok. I see.
"Can't" and "shouldn't" are two totally separate things.
All questions should be answered. All answers should be true. That is why I post.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|