Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
int _outp(unsigned short PORT_ADDRESS , int data)
const int DATA_PORT=0x378;
const int STATUS_PORT=0x379;
const int CONTROL_PORT=0x37a;
_outp(DATA_PORT,data);
_outp(CONTROL_PORT,data);
readData=_inp(STATUS_PORT)