[a] := 1
a means location (address) of the memory
cell, the name of
location (address) 00428504
[a] means contents at the address a
In C language a is called variable and we
write:
a = 1;
In Assembler we write:
mov [a],
1
In WinDbg disassembly output we see:
mov dword ptr
[ArithmeticProject!a (00428504)], 1