yosys/docs/source/code_examples/techmap/mulshift_test.v

6 lines
104 B
Verilog
Raw Normal View History

2014-02-16 22:31:53 +01:00
module test (A, X, Y);
input [7:0] A;
output [7:0] X = A * 8'd 6;
output [7:0] Y = A * 8'd 8;
endmodule