Data Representation
ä Registers: hold addresses and data
ä Fixed width memory word that hold binary
values
ä Width = M bits => 2M different binary values
ä 16 bit register can point to 65536 locations
ä 32 bit register can point to 4294967296
ä 64 bit register can point to 1.84467E+19
locations
ä Hexadecimal notation 0...9, A..F
ä 16 values, 1 hex digit is 4 binary bits
0000 => 0  0100 => 4  1000 => 8   1100 => C
0001 => 1  0101 => 5  1001 => 9   1101 => D
0010 => 2  0110 => 6  1010 => A  1110 => E
0011 => 3  0111 => 7  1011 => B  1111 => F