reg.h 366 B

1234567891011121314151617
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. #define _REGINFO_
  7. typedef struct reginfo {
  8. char *ri_name;
  9. char *ri_repr;
  10. int ri_size;
  11. int ri_class;
  12. int ri_rregvar;
  13. int ri_memb[2];
  14. } reginfo;
  15. extern struct reginfo l_regs[];