view venus/src/periph/alt_boot_ctrl.v @ 90:e8ce3b688723

venus/doc/Flash+RAM: R372 addition documented
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 10 Dec 2021 23:00:44 +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