disrel.c 879 B

123456789101112131415161718192021222324252627282930313233343536
  1. static char *copyright =
  2. "@(#) Copyright (C) 1987 G. M. Harding, all rights reserved";
  3. #ifdef __linux__
  4. char *release =
  5. "released with Dev86 for Linux, based on minix 2.1";
  6. #else
  7. static char *sccsid =
  8. "@(#) disrel.c, Ver. 2.1 created 00:00:00 87/09/01";
  9. char *release =
  10. "release 2.1 (MINIX)";
  11. #endif
  12. /*
  13. **
  14. ** This file documents the major revisions to the 8088 sym-
  15. ** bolic disassembler. It also contains the release string
  16. ** which is output at the head of each disassembly, and the
  17. ** copyright string which must be incorporated in any code
  18. ** distribution.
  19. **
  20. ** Permission to copy and redistribute is hereby granted,
  21. ** provided full source code, with all copyright notices,
  22. ** accompanies any redistribution.
  23. **
  24. ** REVISION HISTORY:
  25. **
  26. ** SEP 87:
  27. ** After internal shakeout, released on Usenet.
  28. **
  29. ** JUN 88:
  30. ** Ported to MINIX
  31. */