view venus/src/periph/alt_boot_ctrl.v @ 95:cc8fd0dbd2cf

D404 SS34: fully specify part (sourced from Digi-Key)
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Jan 2022 19:38:57 +0000
parents c27854430cb3
children
line wrap: on
line source

/*
 * Alternative boot controls in the mobile domain,
 * besides USB domain OD buffers.
 */

module alt_boot_ctrl (GND, RPWON, nTESTRESET);

input GND;
output RPWON, nTESTRESET;

/* manual RESET button */

keyswitch_wrap reset_sw (nTESTRESET, GND);

/* external boot control header */

header_3pin boot_ctrl_header (.pin_1(GND),
			      .pin_2(RPWON),
			      .pin_3(nTESTRESET)
	);

endmodule