Files
Scanning the repository...
Last update 9 years 7 months
by Rushan Shaymardanov
port.c#include "port.h" void Port_Set(Port *port) { *(port->port) |= 1<<port->bit; } void Port_Clear(Port *port) { *(port->port) &= ~(1<<port->bit); }