/* $OpenBSD: outln.c,v 1.3 2004/01/24 21:12:38 miod Exp $ */ /* * bug routines -- assumes that the necessary sections of memory * are preserved. */ #include #include "libbug.h" void mvmeprom_outln(start, end) char *start, *end; { asm volatile ("mr 3, %0": : "r" (start)); asm volatile ("mr 4, %0": : "r" (end)); MVMEPROM_CALL(MVMEPROM_OUTLN); }