mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-10 19:27:07 +00:00
Problems/questions: - fsm.ys. equiv_opt -assert failed because of unproven cells; - latches.ys,tribuf.ys - internal cells present; - memory.ys - sat called with -verify and proof did fail.
12 lines
99 B
Verilog
12 lines
99 B
Verilog
module top
|
|
(
|
|
input [7:0] x,
|
|
input [7:0] y,
|
|
|
|
output [15:0] A,
|
|
);
|
|
|
|
assign A = x * y;
|
|
|
|
endmodule
|