README 922 B

123456789101112131415161718
  1. In this directory is a complete interpreter for EM-code on a
  2. PDP 11, written in Unix assembly language.
  3. There exist assembler options .test .opfreq .flow .count .prof
  4. and .last.
  5. .test tests undefined integers, bad arrays etcetera
  6. .opfreq makes a table of the usage of othe em-opcodes
  7. .flow makes a table of the used lines
  8. .count makes a count table of the used lines
  9. .prof estimates the amount of time spent on each source line
  10. .last gives a table of the last executed lines and files
  11. The interpreter writes its runtime information on a file
  12. em_runinf, which is converted to human readable files
  13. em_last, em_opfreq, em_profile, em_flow and em_count by
  14. the program eminform, for which we also have an assembler
  15. source in this directory.
  16. Because the size of the interpreter just exceeds 8k, it is
  17. advisible to have either .prof or .test turned off on a machine
  18. without separate I and D when a large user program is running.