mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-09-01 10:39:10 +02:00
4 lines
109 B
Verilog
4 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
|