FreeCalypso > hg > freecalypso-schem2
comparison 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 | 
   comparison
  equal
  deleted
  inserted
  replaced
| 16:3d5c40988a6b | 17:5b18183f55bf | 
|---|---|
| 1 /* This module is a wrapper around our SIM socket with card detect switch */ | |
| 2 | |
| 3 module sim_socket_wrap (C1, C2, C3, C5, C6, C7, SW1, SW2); | |
| 4 | |
| 5 inout C1, C2, C3, C5, C6, C7; | |
| 6 inout SW1, SW2; | |
| 7 | |
| 8 pkg_SIM_socket socket ( .pin_1(C1), | |
| 9 .pin_2(C2), | |
| 10 .pin_3(C3), | |
| 11 .pin_4(SW1), | |
| 12 .pin_5(C5), | |
| 13 .pin_6(C6), | |
| 14 .pin_7(C7), | |
| 15 .pin_8(SW2) | |
| 16 ); | |
| 17 | |
| 18 endmodule | 
