Hi On the M5329EVB evaluation board, the LEDs are connected to the TIMER port. To flash them, you need to carry out two steps:
(a) Configure the TIMER port for General Purpose output:
    /* Pin assignments for port TIMER            Pins are all GPIO outputs     */    MCF_GPIO_PDDR_TIMER = MCF_GPIO_PDDR_TIMER_PDDR_TIMER3 |                          MCF_GPIO_PDDR_TIMER_PDDR_TIMER2 |                          MCF_GPIO_PDDR_TIMER_PDDR_TIMER1 |                          MCF_GPIO_PDDR_TIMER_PDDR_TIMER0;    MCF_GPIO_PAR_TIMER = 0;
(b) Toggle bits in the PODR_TIMER register to turn the LEDs on and off, e.g:
   /* Sample code: Loop to flash LED */    while (1) {        MCF_GPIO_PODR_TIMER ^= MCF_GPIO_PODR_TIMER_PODR_TIMER3;        for (i = 0; i < 500000; i++)            asm ("nop");    }Hope this helps.
Simon