FreeCalypso > hg > freecalypso-schem2
view venus/src/periph/inv_buffer_74LVC1G04.v @ 69:de44df15cf05
MCL capacitors: convert to parts
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 02 Dec 2021 07:20:13 +0000 |
parents | 3d5c40988a6b |
children |
line wrap: on
line source
module inv_buffer_74LVC1G04 (GND, Vcc, A, Y); input GND, Vcc; input A; output Y; /* instantiate the package; the mapping of signals to pins is defined here */ pkg_XSON6 pkg (.pin_1(), /* no connect */ .pin_2(A), .pin_3(GND), .pin_4(Y), .pin_5(), /* no connect */ .pin_6(Vcc) ); endmodule