[ASM] Pointer move

i have a pointer that points at specific localtion

DWORD* ptr = (DWORD*)0x006956B2;
DWORD _eax;

how i can move the pointed data into _eax

I tried

mov _eax, ds:ptr

But it's wrong because when I'm going to read the pointed data it's messed up

I tried also
mov _eax, ptr

But same thing
Topic archived. No new replies allowed.