verilog hdl经典例程

源代码在线查看: compare_tb.v.bak

软件大小: 3888 K
上传用户: linux_open_lab
关键词: verilog hdl
下载地址: 免注册下载 普通下载 VIP

相关代码

				`timescale 1ns/ns				`include "./compare.v"				module comparetest;				reg a,b;				wire equal;				initial				begin a=0;				      b=0;				#100 a=0;				b=1;				#100 a=1;				     b=1; 				#100 a=1;				     b=0;				#100 $stop;				end				compare compare1(.equal(equal),.a(a),.b(b));				endmodule          			

相关资源