C_ms_ego.c 395 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_ego(hint, offs, siz, regno)
  9. int hint, regno;
  10. arith offs, siz;
  11. {
  12. C_mes_begin(ms_ego);
  13. C_cst((arith)hint);
  14. C_cst(offs);
  15. C_cst(siz);
  16. C_cst((arith)regno);
  17. C_mes_end();
  18. }