mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			3 lines
		
	
	
	
		
			109 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			3 lines
		
	
	
	
		
			109 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
module top (input clk, input [7:0] a, b, output reg [15:0] c);
 | 
						|
  always @(posedge clk) c <= a * b;
 | 
						|
endmodule
 |