home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / basic / b-compil.lbr / READ.MQ / READ.ME
Encoding:
Text File  |  1986-07-20  |  1.0 KB  |  28 lines

  1. Added information for BCBC users:
  2.  
  3.      There are some undocumented features in BCBC.
  4. Unfortunately, these features were added after the
  5. manual was written, or were overlooked while writing
  6. the manual.  Sorry!
  7.      You may include the whole library (all functions)
  8. by including a line in your BASIC program that reads
  9. #ALL
  10.      You may include a selected library routine with
  11. the preprocessor directive #INCLUDE N, where N is the
  12. number of the routine to include.
  13.      You may insert assembler code directly in the
  14. body of your program with the directive
  15. #ASM
  16. which must be all alone on a line (the line need not
  17. be numbered).  All lines following this directive will
  18. be passed through without parsing or translation until
  19. a line containing the directive
  20. #ENDASM
  21. is encountered.  #ENDASM should also be on its own line.
  22. The assembler routine can be called as a subroutine, or
  23. may be the object of a GOTO.  Please let me know of any
  24. bugs in BCBC!
  25.  
  26. Bruce Tonkin
  27. 6/1/84
  28.