Skip to content

Commit adf0fcc

Browse files
committed
lzc: Correct description
1 parent 8f3a9d7 commit adf0fcc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lzc.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/// A trailing zero counter / leading zero counter.
88
/// Set MODE to 0 for trailing zero counter => cnt_o is the number of trailing zeros (from the LSB)
99
/// Set MODE to 1 for leading zero counter => cnt_o is the number of leading zeros (from the MSB)
10-
/// If the input does not contain a zero, `empty_o` is asserted. Additionally `cnt_o` contains
10+
/// If the input does not contain a one, `empty_o` is asserted. Additionally `cnt_o` contains
1111
/// the maximum number of zeros - 1. For example:
1212
/// in_i = 000_0000, empty_o = 1, cnt_o = 6 (mode = 0)
1313
/// in_i = 000_0001, empty_o = 0, cnt_o = 0 (mode = 0)

0 commit comments

Comments
 (0)