comparison venus/src/usb/eeprom_93Cx6_16bit.v @ 23:9f70dc110ad7

venus/src/usb: building blocks from DUART28
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 20 Nov 2021 17:48:18 +0000
parents
children
comparison
equal deleted inserted replaced
22:22ac331aa0f8 23:9f70dc110ad7
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_IC_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