代码拉取完成,页面将自动刷新
同步操作将从 黄锦伟/H.264_Decoder 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 21:12:21 11/19/2013
// Design Name: zero_count
// Module Name: G:/Xilinx_Proj/H_264_test/test_bench.v
// Project Name: H_264_test
// Target Device:
// Tool versions:
// Description:
//
// Verilog Test Fixture created by ISE for module: zero_count
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
////////////////////////////////////////////////////////////////////////////////
module test_bench;
// Inputs
reg [15:0] data;
// Outputs
wire [3:0] count;
reg [5:0]cnt;
reg clk;
reg rst;
// Instantiate the Unit Under Test (UUT)
zero_count uut (
.data(data),
.count(count)
);
initial begin
// Initialize Inputs
data = 0;
// Wait 100 ns for global reset to finish
#100;
// Add stimulus here
#100 rst=1;
#100 rst=0;
#100 rst=1;
clk=0;
cnt=0;
end
always begin #50 clk=~clk; end
always @(negedge rst or posedge clk) begin
if(!rst) begin
cnt<=0;
end
else begin
case(cnt)
0:begin
data<=1'd0;cnt<=cnt+1'b1;
end
1:begin
data<=16'd1;cnt<=cnt+1'b1;
end
2:begin
data<=16'd2;cnt<=cnt+1'b1;
end
3:begin
data<=16'd4;cnt<=cnt+1'b1;
end
4:begin
data<=16'd8;cnt<=cnt+1'b1;
end
5:begin
data<=16'd16;cnt<=cnt+1'b1;
end
6:begin
data<=16'd32;cnt<=cnt+1'b1;
end
7:begin
data<=16'd64;cnt<=cnt+1'b1;
end
8:begin
data<=16'd128;cnt<=cnt+1'b1;
end
9:begin
data<=16'd256;cnt<=cnt+1'b1;
end
10:begin
data<=16'd512;cnt<=cnt+1'b1;
end
11:begin
data<=16'd1024;cnt<=cnt+1'b1;
end
12:begin
data<=16'd2048;cnt<=cnt+1'b1;
end
13:begin
data<=16'd4096;cnt<=cnt+1'b1;
end
14:begin
data<=16'd8192;cnt<=cnt+1'b1;
end
15:begin
data<=16'd16384;cnt<=cnt+1'b1;
end
16:begin
data<=16'd32768;cnt<=cnt+1'b1;
end
17:begin
data<=16'd324;cnt<=cnt+1'b1;
end
18:begin
data<=16'd3278;cnt<=cnt+1'b1;
end
19:begin
data<=16'd50768;cnt<=cnt+1'b1;
end
20:begin
data<=16'd16543;cnt<=6'd20;
end
endcase
end
end
endmodule
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。