⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 decoder15_test.v

📁 用verilog编写的bch译码器
💻 V
字号:
`timescale 1ns / 1ps////////////////////////////////////////////////////////////////////////////////// Company: // Engineer://// Create Date:   08:40:05 05/14/2008// Design Name:   decoder15// Module Name:   D:/luoqiwu/FPGA/oytt/decoder15_test.v// Project Name:  oytt// Target Device:  // Tool versions:  // Description: //// Verilog Test Fixture created by ISE for module: decoder15//// Dependencies:// // Revision:// Revision 0.01 - File Created// Additional Comments:// ////////////////////////////////////////////////////////////////////////////////module decoder15_test_v;	// Inputs	reg clk;	reg [14:0] r;	// Outputs	wire [14:0] c;	// Instantiate the Unit Under Test (UUT)	decoder15 uut (		.clk(clk), 		.r(r), 		.c(c)	);
		initial begin
	  		forever #25 clk=!clk;
	end
		initial begin		// Initialize Inputs		clk = 0;		r = 0;		// Wait 100 ns for global reset to finish		#200;
      r=15'b0000_1000_0001_000;		// Add stimulus here	end      endmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -