FreeCalypso > hg > freecalypso-schem2
diff venus/src/periph/inv_buffer_74LVC1G04.v @ 16:3d5c40988a6b
Venus src: add 74LVC1G04 inverting buffer for SIM_CD
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 19 Nov 2021 20:35:10 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/venus/src/periph/inv_buffer_74LVC1G04.v Fri Nov 19 20:35:10 2021 +0000 @@ -0,0 +1,17 @@ +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