mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			219 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
/** small, meaningless design to test loading of liberty files */
 | 
						|
 | 
						|
module small
 | 
						|
(
 | 
						|
    input clk,
 | 
						|
    output reg[7:0] count
 | 
						|
);
 | 
						|
 | 
						|
initial count = 0;
 | 
						|
 | 
						|
always @ (posedge clk) 
 | 
						|
begin
 | 
						|
    count <= count + 1'b1;
 | 
						|
end
 | 
						|
 | 
						|
endmodule
 |