Slide 9.2: This book's link library Slide 9.4: This book's link library (cont.) Home |
DumpMem
ESI
, the number of units in ECX
, and the unit size in EBX
( 1 = byte, 2 = word, and 4 = doubleword).
DumpRegs
EAX
, EBX
, ECX
, EDX
, ESI
, EBP
, ESP
, EIP
, and EFLAGS
registers in hexadecimal.
GetMseconds
EAX
.
StrLength
EDX
.
The procedure returns the string's length in EAX
.
WaitMsg
Dumping Memory | Repeating Pressing a Key after 3 Seconds 5 Times |
.data array1 DWORD 102030h, 405060h array2 WORD 7080h, 90A0h .code mov esi, OFFSET array1 mov ecx, LENGTHOF array1 add ecx, LENGTHOF array1 add ecx, LENGTHOF array2 mov ebx, TYPE WORD call DumpMem |
|
Output | |