aboutsummaryrefslogtreecommitdiff
path: root/rtl/modular/modular_invertor/modinv_clog2.v
blob: 04a7739b706213159441fff8312838318386e104 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
function	integer clog2;
   input	integer value;
   integer 		result;
   begin
      value = value - 1;
      for (result = 0; value > 0; result = result + 1)
	value = value >> 1;
      clog2 = result;
   end
endfunction