FreeCalypso > hg > freecalypso-schem2
view venus/src/periph/keyswitch_wrap.v @ 64:82febe124936
add manual RESET button
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 01 Dec 2021 21:45:42 +0000 |
parents | 3dbe73bbc0a4 |
children |
line wrap: on
line source
/* wrapper for the 4-pin tactile switch package */ module keyswitch_wrap (side1, side2); input side1, side2; switch_4pin pkg (.pin_1(side1), .pin_2(side1), .pin_3(side2), .pin_4(side2) ); endmodule