C_ms_ego.c 380 B

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