Forum Discussion
Altera_Forum
Honored Contributor
8 years ago --- Quote Start --- std_logic data type has 9 states: "U, X, 1, 0, Z, W, L, H, - " u: Uninitialized x: Unknown 1: Logic 1 0: Logic 0 Z: High impendance W: Weak signal, can't tell if it should be 0 or 1 L: Weak signal that should probably go to 0 H: Weak signal that should probably go to 1 -: Don't care. In your example, U state can be useful if you forget to initialize a signal in your component testbench. --- Quote End --- The OP is asking about Verilog. Std_logic is a VHDL concept.