FreeCalypso > hg > fc-small-hw
comparison duart28/src/vsrc/eeprom_93Cx6_16bit.v @ 23:22aba3a61a4b
duart28: vsrc passes sverp
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 13 Jun 2020 06:38:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
22:43097651a26d | 23:22aba3a61a4b |
---|---|
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 |