comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:0f9bdd60ce50
1 /* This module encapsulates the SIM socket and any needed caps */
2
3 module sim_socket_block (GND, VSIM, SIM_CLK, SIM_RST, SIM_IO);
4
5 input GND, VSIM;
6 input SIM_CLK, SIM_RST;
7 inout SIM_IO;
8
9 pkg_SIM_socket socket ( .C1(VSIM),
10 .C2(SIM_RST),
11 .C3(SIM_CLK),
12 .C5(GND),
13 .C6(VSIM),
14 .C7(SIM_IO),
15 /* mounting pads */
16 .M1(GND),
17 .M2(GND)
18 );
19
20 /* cap per Leonardo schematics */
21 capacitor C306 (VSIM, GND);
22
23 endmodule