FreeCalypso > hg > fc-small-hw
comparison fc-uja/schem+bom/vsrc/od_buffer.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 od_buffer (GND, Vcc, A, Y); | |
2 | |
3 input GND, Vcc; | |
4 input A; | |
5 output Y; | |
6 | |
7 /* instantiate the package; the mapping of signals to pins is defined here */ | |
8 | |
9 pkg_XSON6 pkg (.pin_1(), /* no connect */ | |
10 .pin_2(A), | |
11 .pin_3(GND), | |
12 .pin_4(Y), | |
13 .pin_5(), /* no connect */ | |
14 .pin_6(Vcc) | |
15 ); | |
16 | |
17 endmodule |