mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-23 06:13:41 +00:00
8 lines
142 B
Text
8 lines
142 B
Text
(* blackbox = 1 *)
|
|
(* leakage_power_unit = "1pW" *)
|
|
module not_cell(A, Y);
|
|
input [7:0] A;
|
|
wire [7:0] A;
|
|
output Y;
|
|
wire Y;
|
|
endmodule
|