|
I have two different lists
qlst1 dq 80000, 40000, 123123, 123123
dlst1 dd 533, 2314, 123, 231
alst1 dd 4 (?) DUP
Now I want to divide the qlst by dlst and then save in the alst which is alst1
How do I do it. qlst1 is a quad so that I cannot put in a register directly.
mov eax, dlst
lea ebx, qlst
mov eax, dword ptr[ebx]+4
mov alst, eax
I am lost from here, please help
|