FreeCalypso > hg > freecalypso-schem2
comparison venus/src/periph/sma_wrap.v @ 11:a70d1c104205
venus/src/periph/sma_wrap.v: unchanged from FCDEV3B
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 19 Nov 2021 06:44:53 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
10:5ee03a306da3 | 11:a70d1c104205 |
---|---|
1 /* wrapper for the 5-pin SMA connector package */ | |
2 | |
3 module sma_wrap (Center, Shell); | |
4 | |
5 input Center, Shell; | |
6 | |
7 pkg_SMA_F pkg ( .pin_1(Center), | |
8 .pin_2(Shell), | |
9 .pin_3(Shell), | |
10 .pin_4(Shell), | |
11 .pin_5(Shell) | |
12 ); | |
13 | |
14 endmodule |