Memory Reference
Ambiguities
ä Consider MOV [BX],5
ä Should we move a byte or a word?
ä Need to instruct the assembler
ä WORD PTR
ä BYTE PTR
ä So we get:
MOV WORD PTR [BX], 5
OR
 MOV BYTE PTR [BX], 5
ä Consider the following example