I tried to write a program in Assembly that calculate operand_a + operand_b.
My big problem if that operanda and operandb are representable in 16-byte (4 d-word). So I wrote this code:
mov eax, operanda
mov ebx, operandb
add eax, ebx
But than I understood that my operand is big than 32-bit.
I missed something?