2.1 Module Location in Memory

All registers for a given peripheral module are placed in one continuous memory block. Registers that belong to different modules are not mixed up, which makes it possible to organize all peripheral modules in C structures, where the instance macro is defined as shown in the code below. The definitions of all peripheral modules are found in the device header files available for these AVR devices. The address for the modules is specified in ANSI C to make it compatible with most available C compilers.

#define PORTMUX           (*(PORTMUX_t *) 0x0200) /* Port Multiplexer */
#define PORTA                (*(PORT_t *) 0x0400) /* I/O Ports */
#define PORTB                (*(PORT_t *) 0x0420) /* I/O Ports */
#define PORTC                (*(PORT_t *) 0x0440) /* I/O Ports */

The module instance definition uses a dereferenced pointer to the absolute address in the memory, coinciding with the module instance base address. The module pointers are defined in the header files; therefore, it is not necessary to add these definitions in the source code.

For example, the base address of the PORTA module is 0x0400. The module with all its registers and reserved bytes has an available memory space from 0x0400 to 0x0420, which means 32 bytes in decimal. Therefore, the PORT_t contains 32 allocated bytes for all its registers (or reserved bytes).