mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 19:52:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
	
		
			654 B
		
	
	
	
		
			Verilog
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			654 B
		
	
	
	
		
			Verilog
		
	
	
		
			Executable file
		
	
	
	
	
| `timescale 1ns/1ns 
 | |
| module tb_dffsr();
 | |
| 	reg clk = 0;
 | |
| 	reg d = 0;
 | |
| 	reg set = 0;
 | |
| 	reg clr = 0;
 | |
| 	wire q;
 | |
| 
 | |
| 	dffsr uut(.d(d),.clk(clk),.set(set),.clr(clr),.q(q));
 | |
| 
 | |
| 	always
 | |
| 		#(5) clk <= !clk;
 | |
| 
 | |
| 	initial
 | |
| 	begin
 | |
| 		$dumpfile("tb_dffsr");
 | |
| 		$dumpvars(0,tb_dffsr);
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		clr = 1;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		clr = 0;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		set = 1;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		set = 0;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		d = 1;
 | |
| 		#10
 | |
| 		d = 0;
 | |
| 		#10
 | |
| 		$finish;
 | |
| 	end
 | |
| endmodule
 |