view venus/src/periph/buzzer_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 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