/*********************************************************************
*
*       SIM_X_Config
*
* Purpose:
*   Called during the initialization process in order to configure
*   the simulator.
*/
void SIM_X_Config() {
  SIM_GUI_SetTransColor(0xff0000);     // Define the transparent color
}
/*********************************************************************
*
*       SIM_X_Config
*
* Purpose:
*   Called during the initialization process in order to configure
*   the simulator.
*/
void SIM_X_Config() {
  SIM_GUI_SetCompositeSize(320, 240);  // Set size of composite window
  SIM_GUI_SetTransColor(0xff0000);     // Define the transparent color
}
/*********************************************************************
*
*       SIM_X_Config
*
* Purpose:
*   Called during the initialization process in order to configure
*   the simulator.
*/
void SIM_X_Config() {
  SIM_GUI_SetTransColor(0xff0000);     // Define the transparent color
  SIM_GUI_UseCustomBitmaps();          // Tell the simulation that custom bitmaps should be used
  SIM_GUI_SetLCDPos(50, 20);           // Define the position of the LCD in the bitmap
}