Memory map file creation

This can be done by the following command

#define PORTB *((volatile unsigned char *) 0x25)
💡
It is important to remember that PORTB defined here is the de-referenced PORTB address. To access the PORTB address we need to add the reference & operator in front.

This process of defining the registers with their names will be done as the need arises.