mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-05 09:04:08 +00:00
18 lines
253 B
Plaintext
18 lines
253 B
Plaintext
read_verilog <<EOT
|
|
|
|
module top(input clk, ce, input [2:0] a, b, output reg [2:0] q);
|
|
|
|
reg [2:0] aa, bb;
|
|
|
|
always @(posedge clk) begin
|
|
if (ce) begin
|
|
aa <= a;
|
|
end
|
|
bb <= b;
|
|
q <= aa + bb;
|
|
end
|
|
endmodule
|
|
EOT
|
|
|
|
synth_ice40 -abc9 -dffe_min_ce_use 4
|