comparison fc-uja/schem+bom/vsrc/eeprom_93Cx6_16bit.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 module eeprom_93Cx6_16bit (GND, VCC, CS, SK, DIN, DOUT);
2
3 input GND, VCC;
4 input CS, SK, DIN;
5 output DOUT;
6
7 /* instantiate the package; the mapping of signals to pins is defined here */
8
9 pkg_8pin pkg (.pin_1(CS),
10 .pin_2(SK),
11 .pin_3(DIN),
12 .pin_4(DOUT),
13 .pin_5(GND),
14 .pin_6(VCC), /* ORG input on some 93Cx6 variants */
15 .pin_7(), /* no connect */
16 .pin_8(VCC)
17 );
18
19 endmodule