Assembly language help Suppose that you are given the follow
Assembly language help
Suppose that you are given the following partial data segment:
.data
myPtrCheck BYTE 12h, 34h, 56h, 78h, 90h, ABh, CDh, EFh
.code ...
mov eax, DWORD PTR myPtrCheck
EAX contains what value, in hexadecimal?
Solution
.data
myPtrCheck BYTE 12h, 34h, 56h, 78h, 90h, ABh, CDh, EFh
.code ...
mov eax, DWORD PTR myPtrCheck
EAX = 78563412h
