home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / caway349.zip / SOURCE / ALL / CW / CW.CFG < prev    next >
Text File  |  1993-09-01  |  2KB  |  58 lines

  1. ;
  2. ;Define the text that marks the start of segment definitions. This is searched
  3. ;for to make sure we start in the right place. Single space will do in place of
  4. ;multiple space/tab, only the words and the fact that they have a space
  5. ;is significant.
  6. ;
  7. SegmentHeader=start stop length name class
  8.  
  9.  
  10. ;
  11. ;Define the layout of segment definitions. The names used are 386Prep variables.
  12. ;There is no relationship between this and SegmentHeader. Only Null, Start,
  13. ;Length & Class are currently defined. This tells 386Prep which column to find
  14. ;each piece of information.
  15. ;
  16. SegmentFormat=Start Null Length Null Class
  17.  
  18.  
  19.  
  20. ;
  21. ;Define CODE type class's. List of CLASS names that need to be defined as code
  22. ;execute/read segments. Multiple entries should be seperated by space.
  23. ;
  24. CodeClass=*code*
  25.  
  26.  
  27.  
  28. ;
  29. ;Define DATA type class's. List of CLASS names that need to be defined as data
  30. ;read/write segments. Multiple entries should be seperated by space.
  31. ;
  32. DataClass=*bss*
  33. DataClass=*data*
  34.  
  35.  
  36.  
  37.  
  38. ;
  39. ;Define STACK type class's. List of CLASS names that need to be defined as stack
  40. ;segments. Multiple entries should be seperated by space.
  41. ;
  42. StackClass=*stack*
  43.  
  44.  
  45.  
  46. ;
  47. ;Define CONST type class's. List of CLASS names that need to be defined as data
  48. ;read only segments. Multiple entries should be seperated by space.
  49. ;
  50. ConstClass=*const*
  51.  
  52.  
  53. ;
  54. ;Define NEAR type class's. List of CLASS names that need to be defined as both
  55. ;code & data. Multiple entries should be seperated by space.
  56. ;
  57. NearClass=*near*
  58.