We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f3a9d7 commit adf0fccCopy full SHA for adf0fcc
1 file changed
src/lzc.sv
@@ -7,7 +7,7 @@
7
/// A trailing zero counter / leading zero counter.
8
/// Set MODE to 0 for trailing zero counter => cnt_o is the number of trailing zeros (from the LSB)
9
/// 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
+/// If the input does not contain a one, `empty_o` is asserted. Additionally `cnt_o` contains
11
/// the maximum number of zeros - 1. For example:
12
/// in_i = 000_0000, empty_o = 1, cnt_o = 6 (mode = 0)
13
/// in_i = 000_0001, empty_o = 0, cnt_o = 0 (mode = 0)
0 commit comments