#include
void main (void)
{
//================================================================
// All I/O Port set to the input mode
//================================================================
P1M=0x00; // P10~P17 set to the input mode
P2M=0x00; // P20~P27 set to the input mode
P1UR=0xFF; // P10~P17 set pull high
P2UR=0xFF // P20~P27 set pull high
//================================================================
// Single PIN set to the input mode
//================================================================
FP50=0; // P50 set to the input mode
FP51=0; // P51 set to the input mode
P5UR=0x03; // P50,P51 set pull high
while(1)
{
//================================================================
//
// User code
//
//================================================================
}
}