view venus/src/periph/sma_wrap.v @ 98:3ab69117b09f default tip

minnie/doc/Design-spec: finished in the first pass
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 01 Oct 2023 08:17:05 +0000
parents a70d1c104205
children
line wrap: on
line source

/* wrapper for the 5-pin SMA connector package */

module sma_wrap (Center, Shell);

input Center, Shell;

pkg_SMA_F pkg ( .pin_1(Center),
		.pin_2(Shell),
		.pin_3(Shell),
		.pin_4(Shell),
		.pin_5(Shell)
	);

endmodule