debug memory view

Everything else that doesn't fall into one of the other PB categories.
Fable Fox
User
User
Posts: 29
Joined: Fri Dec 12, 2003 4:52 am

debug memory view

Post by Fable Fox »

can someone teach me how to use debugger memory view? i kept getting blank. simpe example is ok.
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

Well, you type in the memory addresses you want to look at. That's about it. Do you not know how to get addresses?
Fable Fox
User
User
Posts: 29
Joined: Fri Dec 12, 2003 4:52 am

get adress

Post by Fable Fox »

No. the viewer didn't show anything.
how do you get the memory anyway?

was it debug *memadress? i'm not home now, but i think i did it right, and use what the debug show me as the adress, or was I wrong? any short example might help
Fred
Administrator
Administrator
Posts: 18351
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

You have to give the address value (a number).
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

Code: Select all

Apple.l
Apple = 58492
Debug @Apple ; Address of apple

CallDebugger
When the program at CallDebugger you copy the debugged number (like 4297844) into the first string gadget of the memory viewer. In the second, put the first number + 4 (a long is four bytes) = 4297848. Then click show.
Post Reply