bhcst.c 246 B

1234567891011121314151617
  1. #include "em_code.h"
  2. #include "em_private.h"
  3. /* $Id$ */
  4. void CC_bhcst(int op, arith n, arith w, int i)
  5. {
  6. /* BSS or HOL with size n, initial value a cst w, and flag i
  7. */
  8. PS(op);
  9. CST(n);
  10. COMMA();
  11. CST(w);
  12. COMMA();
  13. CST((arith) i);
  14. NL();
  15. }