Critter
February 25th, 2001, 07:20
What is the difference (in SICE) between "?eax" and "d eax"
how to know when to use which one??
What was used to create the menu system of RCE?
Thanks, Critter
JimmyClif
February 25th, 2001, 09:28
Hello again,
?eax shows you the value of eax at the bottom of the screen in SI in Hexadecimal, Decimal and Ascii.
ex if eax contains 6652
?eax
00006652 00000026194 "fR"
Hex...........Dec...............Ascii
d eax dumps what's behind an adress in your data window.
ex:
d eax (eax contains maybe 00403012)
After executing this command you will see that SI goes to that specific adress and shows you the content of that adress in your data window.
How to difference these two? You need to know the difference between a value and an address first!
As carnival is in town,
Cheers JimmyClif
Critter
February 26th, 2001, 05:41
cheers for the info mate.
Critter
Powered by vBulletin® Version 4.2.2 Copyright © 2018 vBulletin Solutions, Inc. All rights reserved.