概述
//function called clogb2 that returns an integer which has the
//value of the ceiling of the log base 2.
function integer clogb2 (input integer bit_depth);
begin
for(clogb2=0; bit_depth>0; clogb2=clogb2+1)
bit_depth = bit_depth>>1;
end
endfunction
//************************************************************************
localparam WIDTH_SRL = 32;
localparam WIDTH_CNT = clogb2(WIDTH_SRL/8-1);
在verilog中使用clogb2函数可进行log2操作,用来计算数据位宽
最后
以上就是坚强黑米为你收集整理的在verilog中使用clogb2函数可进行log2操作,用来计算数据位宽的全部内容,希望文章能够帮你解决在verilog中使用clogb2函数可进行log2操作,用来计算数据位宽所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复