Log in

View Full Version : how do i edit the asm code in trw 2000


Monkey
October 23rd, 2001, 09:33
Hi !
I'm using trw 2000 and win 98 II
When i am trying to edit the asm code for ex:
cmp eax,0de0 to cmp eax,abcd it won't work why?
Or this push 01414566 to push b1c1d1e1.
It looks like when the first is a number it's ok
but when its a letter it's not ok.
what is wrong ??? I can edit the hex code but not
the asm code.

Monkey

Aimless
October 23rd, 2001, 10:13
Try entering it as 0xb123bd00 instead of b123bd00

Or, try entering it as "b123bd00h" rather than "b123bd00" (note the -h- at the end mentioning that it is a hex number rather than a normal decimal)

...Have Phun

Monkey
October 23rd, 2001, 15:01
Thank's it works, you saved me a lot of work thank's.