blob: 0f043e5fc1e3df4b779c59b80773f016d73a0dd1 [file] [log] [blame] [edit]
module top (input clk, input [7:0] a, b, output reg [15:0] c);
always @(posedge clk) c <= a * b;
endmodule