home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 1 / HACKER1.ISO / hack / mish7.txt < prev    next >
Text File  |  1992-03-04  |  2KB  |  42 lines

  1. ()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()
  2. ()                                                                          ()
  3. ()                       Pdp-11 Basic plus programming                      ()
  4. ()                                   by                                     ()
  5. ()                  Executive Hacker & Corporate Criminal                   ()
  6. ()                                  |CEO|                                   ()
  7. ()()()()()()()()()()()()(|Chief Executive Officers|)()()()()()()()()()()()()()
  8.  
  9. The Pdp-11 by Digital Systems is a quite old machine, apoximatley 10 years,
  10. but some of them are still running, mostly in schools.  One of the more popular
  11. operating systems, Rsts/e features BASIC plus programing language, though the
  12. following information on it was taken mainly from and RT-11 and CS-360 
  13. operating systems manuals, it is applicable to Rsts/e.  I have, based on my
  14. knowledge of it, compliled a summary of all the commands, with a brief comment
  15. about each one:
  16.  
  17.  
  18. CALL "function name" [(argument list)]
  19. -used to call assembly language user functions from a BASIC program.
  20.  
  21. Chain "file descriptor"[Line nubmer]
  22. -Terminates execution of user program, loads and executes the specified program
  23.  starting at the line number, if included."
  24.  
  25. Close [{file #n/Virtual mem. file #n}]
  26. -Closes the logical file specified.  If no file is specified, closes all files 
  27.  which are open.
  28.  
  29. DATA data list
  30. -Used in conjunction with READ to input data into an executing program.
  31.  
  32. DEF Fnletter (argument)=expression
  33. -Defines a user function ot be used in the program (letter is any alphabetic
  34.  letter).
  35.  
  36. DIM variable(n), variable(n,m),variable$(n),variable$(n,m)
  37. -Reserves space for lists and tables according to subscripts specified after
  38.  variable name.
  39.  
  40. DOWNLOADED FROM P-80 SYSTEMS........
  41.  
  42.