yosys/tests/techmap/constmap.ys

44 lines
807 B
Plaintext
Raw Normal View History

read_verilog << EOT
module test();
wire [31:0] in;
wire [31:0] out;
assign out = in + 16;
endmodule
EOT
constmap -cell const_cell O value
2025-04-14 12:44:52 +02:00
select -assert-count 1 t:const_cell r:value=16 %i
design -reset
2025-03-26 23:24:41 +01:00
read_verilog -lib << EOT
module const_cell(O);
2025-04-10 01:01:50 +02:00
parameter value=0;
2025-03-26 23:24:41 +01:00
output O;
endmodule
EOT
read_verilog << EOT
module test();
wire [31:0] in;
wire [31:0] out1;
wire [31:0] out2;
assign out1 = in + 16;
assign out2 = in + 32;
endmodule
EOT
constmap -cell const_cell O value
2025-04-10 01:01:50 +02:00
select -assert-count 2 t:const_cell
select -assert-count 1 r:value=16
select -assert-count 1 r:value=32
2025-03-26 23:24:41 +01:00
select -assert-count 1 test/out1 %ci* r:value=16 %i
select -assert-count 1 test/out2 %ci* r:value=32 %i
2025-04-10 01:01:50 +02:00
select -assert-count 1 t:const_cell r:value=16 %i
select -assert-count 1 t:const_cell r:value=32 %i