view venus/src/periph/buzzer_wrap.v @ 75:280e1ffc4281

MCL part header-2pin: list the gold-plated version
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 04 Dec 2021 19:02:14 +0000
parents c661a87159c2
children
line wrap: on
line source

/* wrapper for the buzzer PCB footprint */

module buzzer_wrap (Pos, Neg);

input Pos, Neg;

pkg_buzzer pkg (.pin_1(Pos),
		.pin_2(Neg),
		.pin_3(),	/* no connect */
		.pin_4()	/* ditto */
	);

endmodule