1/*	$NetBSD: return.c,v 1.2 1996/05/17 19:51:02 chuck Exp $	*/
2
3/*
4 * bug routines -- assumes that the necessary sections of memory
5 * are preserved.
6 */
7#include <sys/types.h>
8#include <machine/prom.h>
9
10#include "stand.h"
11#include "libbug.h"
12
13/* BUG - return to bug routine */
14__dead void
15_rtt(void)
16{
17
18	MVMEPROM_CALL(MVMEPROM_EXIT);
19	printf("%s: exit failed.  spinning...", __func__);
20	for (;;)
21		;
22	/*NOTREACHED*/
23}
24