Write a C program that will work with Explore16 board if bot
     Write a C program that will work with Explore16 board: if both pushbuttons S3 and S6 are pressed, toggle LEDs D3-D6 on. Otherwise, they are off. Ignore the states of other LEDs. (The schematics pushbuttons and LEDs on Explorer16 board can be found at http://wwl.microchip.com/downloads/en/DeviceDoc/51589a.pdf on Pages 38-39.) For students using your own PIC24 circuit, please demo that by showing on an equivalent circuit. 
  
  Solution
#include<reg52.h> // special perform register declarations
 // for the meant 8051 spinoff
sbit junction rectifier = P2^0; // shaping junction rectifier pin
void Delay(void); // perform example declaration
void main (void)
 {
 while(1) // infinite loop
 {
 junction rectifier = 0; // junction rectifier ON
 Delay();
 junction rectifier = 1; // junction rectifier OFF
 Delay();
 }
 }
void Delay(void)
}
 }

