代码拉取完成,页面将自动刷新
同步操作将从 黄锦伟/H.264_Decoder 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
module zero_count(
Code,//输入码字
count//返回第一个1前0的个数
);
input [15:0]Code;
output [3:0]count;
reg [3:0]count;
always @(*)
begin
if(Code[15:0]==16'b1000_0000_0000_0000)
count=4'd15;
else if(Code[14:0]==15'b100_0000_0000_0000)
count=4'd14;
else if(Code[13:0]==14'b10_0000_0000_0000)
count=4'd13;
else if(Code[12:0]==13'b1_0000_0000_0000)
count=4'd12;
else if(Code[11:0]==12'b1000_0000_0000)
count=4'd11;
else if(Code[10:0]==11'b100_0000_0000)
count=4'd10;
else if(Code[9:0]==10'b10_0000_0000)
count=4'd9;
else if(Code[8:0]==9'b1_0000_0000)
count=4'd8;
else if(Code[7:0]==8'b1000_0000)
count=4'd7;
else if(Code[6:0]==7'b100_0000)
count=4'd6;
else if(Code[5:0]==6'b10_0000)
count=4'd5;
else if(Code[4:0]==5'b1_0000)
count=4'd4;
else if(Code[3:0]==4'b1000)
count=4'd3;
else if(Code[2:0]==3'b100)
count=4'd2;
else if(Code[1:0]==2'b10)
count=4'd1;
else if(Code[0]==1'b1)
count=4'd0;
else
count=4'bxxxx;
end
endmodule
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。