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