param.h 540 B

123456789101112131415161718192021222324252627282930
  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. #ifndef MACH_PROTO_NCG_PARAM_H
  7. #define MACH_PROTO_NCG_PARAM_H
  8. #define BMASK 0377
  9. #define BSHIFT 8
  10. #define TRUE 1
  11. #define FALSE 0
  12. #define MAXINT 32767
  13. #define INFINITY (MAXINT+100)
  14. #define MAXROM 3
  15. #define op_lab (sp_lmnem+1)
  16. /*
  17. * Tunable constants
  18. */
  19. #define MAXEMLINES 20
  20. #define MAXFSTACK 20
  21. #define MAXTDBUG 32
  22. #endif /* MACH_PROTO_NCG_PARAM_H */