C_ms_reg.c 398 B

12345678910111213141516171819
  1. /* $Header$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #include <em.h>
  7. #include <em_mes.h>
  8. C_ms_reg(offs, siz, class, prior)
  9. arith offs, siz;
  10. int class, prior;
  11. {
  12. C_mes_begin(ms_reg);
  13. C_cst(offs);
  14. C_cst(siz);
  15. C_cst((arith)class);
  16. C_cst((arith)prior);
  17. C_mes_end();
  18. }