I have an .asm file with 2 arrays:
.DATA
compara byte 16 dup (?)
subtrai byte 16 dup (128)
Then I tried to use movdqu
on the arrays (to xmm1
and xmm2
), but I'm having a problem.
Even though they are the same size, each array stores 16 bytes of data, I get the error:
error A2022: instruction operands must be the same size
movdqu xmm2, compara
movdqu xmm1, subtrai