home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / list / ep-src.ark / MAKEEP.DOC < prev    next >
Text File  |  1988-05-21  |  1KB  |  40 lines

  1.  
  2. Notes on making EP.COM (August '84).
  3.  
  4. The last step is:
  5.     A>li ep.rel -e 4900 -w fget.rel ndeff.rel
  6. where li is the rel file version of l2,
  7. and all relevant .rel files are present, as well as c.ccc.
  8.  
  9. The .rel files needed are:
  10.  
  11. ep.rel         1k    main module
  12. gchr.rel       3k
  13. misc1.rel      1k
  14. sendit.rel     2k
  15. cseq.rel       4k
  16. gotocol.rel    1k
  17. newoutl.rel    1k
  18. gstr.rel       2k
  19. paperup.rel    2k
  20. stowc.rel      1k
  21. epsinit.rel    2k
  22. epexec.rel     1k
  23. process.rel    2k
  24. underli.rel    1k
  25. fget.rel       1k
  26. ndeff.rel      1k
  27. prtsbuf.rel    1k
  28.  
  29.  
  30.  
  31. Except for ndeff, each of these is a single module assembled from the
  32. corresponding .mac file by, e.g.,
  33.     A>m80 =gchr
  34. All these .mac files include: bdsym.equ and epdata.mac.
  35.  
  36. ndeff is a library of assembly versions of various functions from deff.crl
  37. (viz. strcmp, strcat, strcpy, puts, alloc, free, and [new] freeall).
  38. After ndeff and fget are force-loaded, no functions are obtained from
  39. deff.crl (thus there is assembler source now for everything).
  40.