aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/remap_nexus.v
blob: fa817762e8de706e68b6acda19c9ab7cb252b74f (plain)
1
2
3
4
// Inverter support is still a TODO
module INV(input A, output Z);
	LUT4 #(.INIT("0x5555")) _TECHMAP_REPLACE_ (.A(A), .B(1'b1), .C(1'b1), .D(1'b1), .Z(Z));
endmodule