More pseudo notation
•[a] means contents at the address a
•[eax] means contents at the address stored in eax
•(eax is a pointer)
•*[pa] means contents at the address stored at the address pa, called dereferencing a pointer whose address is pa
•int *pa = &a;
•int b = *pa; 
•
•