3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-07 16:31:56 +00:00

Add Liberty to verilog conversion tests

This commit is contained in:
Akash Levy 2024-10-05 01:34:12 -10:00
parent 4de5e718ed
commit 36e57017fe
8 changed files with 239 additions and 0 deletions

View file

@ -0,0 +1,8 @@
(* area = "1" *)
(* blackbox = 1 *)
module SRAM(CE1, I1);
input CE1;
wire CE1;
input [3:0] I1;
wire [3:0] I1;
endmodule