Skip to main content

STD_LOGIC and STD_LOGIC_VECTOR

Definition

STD_LOGIC is often used, because it allows to set or read all possible states of an input or output. For example, for I2C, the output must switch between '0' and 'Z' (not connected to GND or 3V3). In addition, it is helpful to know if an input has a different state.

STD_LOGIC can be used like BIT, but with the different states
'U' <- Uninitialized
'X' <- Unknown
'0' <- Low
'1' <- High
'Z' <- High Impedance
'W' <- Weak Unknown
'L' <- Weak Low
'H' <- Weak High
'-' <- Don't Care