C_ms_reg.c 399 B

1234567891011121314151617181920
  1. /* $Id$ */
  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. void
  9. C_ms_reg(offs, siz, class, prior)
  10. arith offs, siz;
  11. int class, prior;
  12. {
  13. C_mes_begin(ms_reg);
  14. C_cst(offs);
  15. C_cst(siz);
  16. C_cst((arith)class);
  17. C_cst((arith)prior);
  18. C_mes_end();
  19. }