coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
chip.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
4  unsigned char in_out; /* Use bit as input(1) or output (0). */
5  unsigned char invert; /* If a bit is 1, the input will be inverted. */
6  unsigned char out_val; /* Initial output value to drive. */
7 };
unsigned char out_val
Definition: chip.h:6
unsigned char invert
Definition: chip.h:5
unsigned char in_out
Definition: chip.h:4