Zilog ZUSBOPTS User Manual
Page 52
Advertising

UM025603-0814
ZDS II Developer Studio for the ZNEO CPU
Zilog Educational Shields
User Manual
45
}//end circle
/*******************************************************
main
Starting function for the the application.
Requires:
Nothing
Returns:
Nothing
*******************************************************/
void main()
{
PADD = 0x00;// Port A Data Direction 0x00=Output : 0x01=Input
PBDD = 0x00;
PCDD = 0x00;
PDDD = 0x00;
PEDD = 0x00;
PFDD = 0x00;
PGDD = 0x00;
PHDD = 0x00;
while(1)
{
click();
LetterZ();
delay3();
Circle();
LetterI();
delay3();
Circle();
LetterL();
delay3();
Circle();
LetterO();
delay3();
Circle();
LetterG();
delay3();
Circle();
}
}//End main
Advertising