// the following code demonstrates the use of constant rom based string void main() { LCD_Char_1_Start(); LCD_Char_1_Position(0,4); //put cursor at row 0, column 4 LCD_Char_1_PrintString("Hello"); LCD_Char_1_Position(1,4); LCD_Char_1_PrintString("World"); } //the following code demonstrates the use of char* variable, ram based string void main() { char* content="CSCE 462"; LCD_Char_1_Start(); LCD_Char_1_Position(0,4); LCD_Char_1_PrintString(content); content = "students"; LCD_Char_1_Position(1,4); LCD_Char_1_PrintString(content); } //this is the system call to delay a certain amount of time void CyDelay(uint32 milliseconds);