Add _rtt(), which is called by panic() in libsa/panic.c,

which is useed from ustarfs.c.
This commit is contained in:
tsutsui 2002-04-30 13:10:56 +00:00
parent f6415ab206
commit 8b87191ece

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.6 2002/04/30 01:07:26 tsutsui Exp $ */
/* $NetBSD: boot.c,v 1.7 2002/04/30 13:10:56 tsutsui Exp $ */
/*-
* Copyright (C) 1999 Izumi Tsutsui. All rights reserved.
@ -135,3 +135,13 @@ boot(d4, d5, d6, d7)
__asm __volatile ("movl %0,%%d2" : : "m" (marks[MARK_END]));
(*entry)();
}
void
_rtt()
{
rom_halt();
for (;;)
;
/* NOTREACHED */
}