mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			119 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			119 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
module test(a, b, c, d, y);
 | 
						|
input [15:0] a, b;
 | 
						|
input [31:0] c, d;
 | 
						|
output [31:0] y;
 | 
						|
assign y = a * b + c + d;
 | 
						|
endmodule
 |