FreeCalypso > hg > fc-small-hw
diff mmtb1/schem+bom/vsrc/sim_socket_block.v @ 0:0f9bdd60ce50
fc-small-hw separated from old freecalypso-schem repo
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 21 Oct 2019 00:53:38 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmtb1/schem+bom/vsrc/sim_socket_block.v Mon Oct 21 00:53:38 2019 +0000 @@ -0,0 +1,23 @@ +/* This module encapsulates the SIM socket and any needed caps */ + +module sim_socket_block (GND, VSIM, SIM_CLK, SIM_RST, SIM_IO); + +input GND, VSIM; +input SIM_CLK, SIM_RST; +inout SIM_IO; + +pkg_SIM_socket socket ( .C1(VSIM), + .C2(SIM_RST), + .C3(SIM_CLK), + .C5(GND), + .C6(VSIM), + .C7(SIM_IO), + /* mounting pads */ + .M1(GND), + .M2(GND) + ); + +/* cap per Leonardo schematics */ +capacitor C306 (VSIM, GND); + +endmodule