Ad Code

Mov Byte Mov Word

Difference between two instructions?
mov byte [num1],5
mov word [num1],5


In first instruction, The variable num1 is treated as a byte and similarly 5 is also treated as byte.
In 2nd instruction, The variable num1 is treated as a word and similarly 5 is also treated as word.
Reactions

Post a Comment

0 Comments