errno.s 469 B

12345678910111213141516171819202122232425262728
  1. #
  2. ! $Source$
  3. ! $State$
  4. ! $Revision$
  5. ! Declare segments (the order is important).
  6. .sect .text
  7. .sect .rom
  8. .sect .data
  9. .sect .bss
  10. #define D(e) .define e; e
  11. .sect .data
  12. ! Define various ACK error numbers. Note that these are *not* ANSI C
  13. ! errnos, and are used for different purposes.
  14. D(ERANGE) = 1
  15. D(ESET) = 2
  16. D(EIDIVZ) = 6
  17. D(EHEAP) = 17
  18. D(EILLINS) = 18
  19. D(EODDZ) = 19
  20. D(ECASE) = 20
  21. D(EBADMON) = 25