home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 364b.lha / PCQ_v1.1 / Runtime / PCQ / StdNames.asm < prev    next >
Encoding:
Assembly Source File  |  1990-04-08  |  670 b   |  25 lines

  1. *
  2. *    StandardNames.asm (of the PCQ Pascal runtime library)
  3. *    Copyright (c) 1989 Patrick Quaid
  4. *
  5. *    This file defines the default Input and Output file names
  6. *    to be used when a program is run from the Workbench but tries
  7. *    to do a ReadLn or WriteLn or whatever.  These values (of type
  8. *    string) can be overridden by defining a global variable or
  9. *    global typed constant with the same name (the linker will
  10. *    choose the object defined in a FROM file in preference to
  11. *    an object defined in a library).
  12. *
  13.  
  14.     XDEF    _StdInName
  15.     XDEF    _StdOutName
  16.  
  17.     SECTION    StdNames,DATA
  18.  
  19. _StdInName    dc.l    InName
  20. _StdOutName    dc.l    InName        ; same darned thing
  21.  
  22. InName    dc.b    'CON:0/0/640/200/',0
  23.  
  24.     END
  25.