Import 2.3.9pre5
[davej-history.git] / arch / mips / dec / reset.c
blob75e18c215dbf1c13db6719e446b49c4383caf3e7
1 /*
2 * $Id: reset.c,v 1.4 1999/04/11 17:06:16 harald Exp $
4 * Reset a DECstation machine.
6 */
8 void (*back_to_prom)(void) = (void (*)(void))0xBFC00000;
10 void dec_machine_restart(char *command)
12 back_to_prom();
15 void dec_machine_halt(void)
17 back_to_prom();
20 void dec_machine_power_off(void)
22 /* DECstations don't have a software power switch */
23 back_to_prom();