mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-03 21:09:12 +00:00 
			
		
		
		
	Rename verific to import in tests and update README explanation
This commit is contained in:
		
							parent
							
								
									54c69f1fed
								
							
						
					
					
						commit
						53ed83fcac
					
				
					 4 changed files with 10 additions and 10 deletions
				
			
		| 
						 | 
				
			
			@ -1,17 +1,17 @@
 | 
			
		|||
verific -sv  <<EOF
 | 
			
		||||
import -sv  <<EOF
 | 
			
		||||
module TEST_CELL(input clk, input a, input b, output reg c);
 | 
			
		||||
parameter PATH = "DEFAULT";
 | 
			
		||||
endmodule
 | 
			
		||||
EOF
 | 
			
		||||
 | 
			
		||||
verific -sv <<EOF
 | 
			
		||||
import -sv <<EOF
 | 
			
		||||
module top(input clk, input a, input b, output c, output d);
 | 
			
		||||
	TEST_CELL  #(.PATH("TEST")) test1(.clk(clk),.a(a),.b(1'b1),.c(c));
 | 
			
		||||
	TEST_CELL  #(.PATH("DEFAULT")) test2(.clk(clk),.a(a),.b(1'bx),.c(d));
 | 
			
		||||
endmodule
 | 
			
		||||
EOF
 | 
			
		||||
 | 
			
		||||
verific -import top
 | 
			
		||||
import -import top
 | 
			
		||||
hierarchy -top top
 | 
			
		||||
stat
 | 
			
		||||
select -assert-count 2 t:TEST_CELL
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue