在这个应该是循环中断条件的代码片段中, cmp DWORD PTR 做什么?mov DWORD PTR 是什么
mov eax, DWORD PTR [c]
mov ecx, DWORD PTR [array]
LoopStart:
cmp DWORD PTR
jne AfterLoop // break
mov DWORD PTR
add eax, 1
cmp eax, 1000 // post-test
jl LoopStart
AfterLoop:
在这个应该是循环中断条件的代码片段中, cmp DWORD PTR 做什么?mov DWORD PTR 是什么
mov eax, DWORD PTR [c]
mov ecx, DWORD PTR [array]
LoopStart:
cmp DWORD PTR
jne AfterLoop // break
mov DWORD PTR
add eax, 1
cmp eax, 1000 // post-test
jl LoopStart
AfterLoop: