/* $OpenBSD: outstr.c,v 1.2 2001/07/04 08:09:28 niklas Exp $ */ /* * bug routines -- assumes that the necessary sections of memory * are preserved. */ #include #include void mvmeprom_outstr(start, end) char *start, *end; { asm volatile ("or r2,r0,%0": : "r" (start)); asm volatile ("or r3,r0,%0": : "r" (end)); MVMEPROM_CALL(MVMEPROM_OUTSTR); }