comparison duart28c/src/vsrc/eeprom_93Cx6_16bit.v @ 46:d80978bd645e

duart28c: started with a copy from duart28
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 29 Jul 2020 07:08:28 +0000
parents
children
comparison
equal deleted inserted replaced
45:2f8a4e3c48cb 46:d80978bd645e
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