ack/modules/src/em_code/bhdlb.c
1989-10-13 14:03:25 +00:00

22 lines
263 B
C

#include "em_private.h"
/* $Header$ */
CC_bhdlb(op, n, s, off, i)
arith n;
label s;
arith off;
int i;
{
/* BSS or HOL with size n, initial value a dlb(s, off),
and flag i
*/
PS(op);
CST(n);
COMMA();
DOFF(s, off);
COMMA();
CST((arith) i);
NL();
}