FreeCalypso > hg > freecalypso-schem2
view venus/src/periph/inv_buffer_74LVC1G04.v @ 77:c273bf8a93cb
precharge current limiting resistor nailed down
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 05 Dec 2021 03:07:45 +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