view venus/src/usb/usb_xtal_wrap.v @ 67:8f3df7a222f5

change USB 6.0 MHz crystal to a smaller part
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 02 Dec 2021 01:35:34 +0000
parents venus/src/core/xtal_32khz_wrap.v@3ed0f7a9c489
children
line wrap: on
line source

/*
 * This Verilog module encapsulates the PCB footprint
 * for our 6.0 MHz USB crystal.
 */

module usb_xtal_wrap (electrode1, electrode2, GND);

input electrode1, electrode2, GND;

xtal_4pin_pkg xtal (.pin_1(electrode1),
		    .pin_2(GND),
		    .pin_3(electrode2),
		    .pin_4(GND)
	);

endmodule