3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-12-02 10:09:09 +00:00

test suite

This commit is contained in:
Lofty 2025-09-24 20:56:27 +01:00
parent a1d13843ad
commit 9f26034176
38 changed files with 1282 additions and 161 deletions

View file

@ -0,0 +1,16 @@
read_verilog <<EOT
module led_blink (
input clk,
output ledc
);
reg [6:0] led_counter = 0;
always @( posedge clk ) begin
led_counter <= led_counter + 1;
end
assign ledc = !led_counter[ 6:3 ];
endmodule
EOT
proc
equiv_opt -assert -map +/analogdevices/cells_sim.v synth_analogdevices