OpenFPGA/openfpga_flow/openfpga_cell_library/verilog/inv.v

10 lines
136 B
Verilog

// ----- Verilog module for INVTX1 -----
module INVTX1(in, out);
input [0:0] in;
output [0:0] out;
assign out = ~in;
endmodule