•register := 1 or register := [a]
•We do not use brackets when refer to register
contents
•Latter instruction means assign (copy) the
number at the
location (address) “a” to a register
•In Assembler we write:
•mov eax,
1
•mov eax, [a]
•In WinDbg disassembly output we see:
•mov eax, [ArithmeticProject!a
(00428504)]
•