/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #ifndef lint static char sccsid[] = "@(#)vaxx.c 5.1 (Berkeley) 6/7/85"; #endif not lint #include #include "defines.h" #include "machdefs.h" prchars(fp, s) FILEP fp; int *s; { fprintf(fp, ".byte 0%o,0%o\n", s[0], s[1]); } pruse(fp, s) FILEP fp; char *s; { fprintf(fp, "\t%s\n", s); } prskip(fp, k) FILEP fp; ftnint k; { fprintf(fp, "\t.space\t%ld\n", k); } prcomblock(fp, name) FILEP fp; char *name; { fprintf(fp, LABELFMT, name); }