Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
xilinx
/
common
/
primitives
/
common_slice
/
routing
/
coutused
/
coutused.sim.v
blob: f0782bb7f0afcda3a7577c6de36a440c2745617d [
file
] [
log
] [
blame
] [
edit
]
`include "../../../../../../vpr/muxes/logic/mux2/mux2.sim.v"
module COUTUSED(IN, OUT);
input wire IN;
parameter S = 0;
output wire OUT;
MUX2 mux (
.I0(0),
.I1(IN),
.S0(S),
.O(OUT)
);
endmodule