mirror of https://github.com/lnis-uofu/SOFA.git
21 lines
494 B (Stored with Git LFS)
Verilog
21 lines
494 B (Stored with Git LFS)
Verilog
`timescale 1ns/1ps
|
|
|
|
//-----------------------------------------------------
|
|
// Function: a wrapper for the MUX2 required by carry logic
|
|
//-----------------------------------------------------
|
|
module sky130_fd_sc_hd__mux2_1_wrapper (
|
|
input A0,
|
|
input A1,
|
|
input S,
|
|
output X
|
|
);
|
|
|
|
sky130_fd_sc_hd__mux2_1 MUX2 (.A0(A0),
|
|
.A1(A1),
|
|
.S(S),
|
|
.X(X)
|
|
);
|
|
|
|
endmodule
|
|
|