FreeCalypso > hg > freecalypso-schem2
diff venus/src/periph/sim_socket_wrap.v @ 17:5b18183f55bf
Venus src: SIM socket block captured
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 19 Nov 2021 20:59:14 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/venus/src/periph/sim_socket_wrap.v Fri Nov 19 20:59:14 2021 +0000 @@ -0,0 +1,18 @@ +/* This module is a wrapper around our SIM socket with card detect switch */ + +module sim_socket_wrap (C1, C2, C3, C5, C6, C7, SW1, SW2); + +inout C1, C2, C3, C5, C6, C7; +inout SW1, SW2; + +pkg_SIM_socket socket ( .pin_1(C1), + .pin_2(C2), + .pin_3(C3), + .pin_4(SW1), + .pin_5(C5), + .pin_6(C6), + .pin_7(C7), + .pin_8(SW2) + ); + +endmodule