in reply to How to read from a memory address

There are several. I'd use Inline::C, since it should be easy to write a little C function to read whatever data you need to access. If you're not a C hacker then you might find Devel::Pointer useful, although I've never used it.

-sam

Replies are listed 'Best First'.
Re^2: How to read from a memory address
by ablmf (Acolyte) on Jul 19, 2006 at 17:29 UTC
    Thanks a lot. Inline::C is just what I need. But I think Devel::Pointer is not for this kind of problem.