20 lines
256 B
C
20 lines
256 B
C
|
#include "em_private.h"
|
||
|
|
||
|
CC_bhicon(op, n, s, sz, i)
|
||
|
arith n;
|
||
|
char *s;
|
||
|
arith sz;
|
||
|
int i;
|
||
|
{
|
||
|
/* BSS or HOL with size n, initial value an ICON (s, sz),
|
||
|
and flag i
|
||
|
*/
|
||
|
PS(op);
|
||
|
CST(n);
|
||
|
COMMA();
|
||
|
WCON(sp_icon, s, sz);
|
||
|
COMMA();
|
||
|
CST((arith) i);
|
||
|
NL();
|
||
|
}
|