home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / simtel / sigm / vols000 / vol081 / consts.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1984-04-29  |  387 b   |  14 lines

  1. { This file contains useful constant declarations.
  2.   It should be included after the keyword CONST
  3.   in the main program. }
  4.  
  5. NUL = 0;        { ASCII null character }
  6. TAB = 9;        { ASCII tab character }
  7. FF = 12;        { ASCII formfeed character }
  8. CR = 13;        { ASCII carriage return }
  9. ESC = 27;        { ASCII escape character }
  10.  
  11. blank = ' ';
  12.  
  13. maxbyte = 255;    { Largest value of 1 byte variable }
  14.