Vl-bit
Representation of a single Verilog bit (0, 1, X, or Z).
Verilog has four register-transfer level values, 0, 1,
X, and Z. We represent these values using the keyword symbols
accepted by vl-bit-p:
- :vl-0val means 0,
- :vl-1val means 1,
- :vl-xval means X, and
- :vl-zval means Z.
Subtopics
- Vl-bitlist->charlist
- Convert a vl-bitlist into the corresponding character list,
e.g., (#\1 #\0 #\X #\Z).
- Vl-bit->char
- Convert a vl-bit-p into the corresponding character, e.g.,
#\0 or #\X.
- Vl-bitlist->string
- Convert a vl-bitlist into the corresponding string, e.g.,
"10XZ".
- Vl-bit-p
- Recognizer for a single bit.
- Vl-bitlist
- A list of vl-bit-p objects.