home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / osborne / oxtricks.doc < prev    next >
Text File  |  1994-07-13  |  4KB  |  90 lines

  1.  
  2.  
  3.  
  4. Documentation for the library OXTRICKS
  5. **************************************
  6.  
  7.  
  8. These programs are written for the OSBORNE EXECUTIVE and use some of the 
  9. features peculiar to that machine.  Some of them will run on the OSBORNE
  10. 1 with some modification, like E-SKETCH and TRICKS.  Any of them may run
  11. on other machines but don't count on it!
  12.  
  13. They are entered into the public domain for educational purposes only.
  14. Please respect the spirit of this action and refrain from USING THEM FOR
  15. COMMERCIAL PURPOSES.  Please note that TRICKS uses routines copied from
  16. two other programs in the public domain. If their authors
  17. are unhappy about my use they may contact me and I will be happy to add
  18. their names to the programs.  That information is not available to me
  19. at this time.  Please accept my apologies for this.
  20.  
  21. For fixes and discussion please contact VANRYPER c/o MBINEX, 
  22. 617-423-6985.
  23.  
  24. Best wishes, W. van Riper      17 February 1984
  25.  
  26. *****************************************************************************
  27.  
  28.  
  29. FINDCHAR    lets you run through the full set of EXECUTIVE characters
  30.         from 0-255 and prints them for your inspection - graphics too
  31.  
  32. E-SKETCH    etch-a-sketch program similar to SCRPAINT in the public 
  33.         domain for the OSBORNE 1 except configured for the EXECUTIVE
  34.         - creates a subroutine file that uses the bank-switching
  35.         arrangement of the EXECUTIVE to write directly to video
  36.         memory - very fast, and incorporating improvements over
  37.         SCRPAINT such as the ability to place cursor directly anywhere
  38.         on the screen at any time
  39.  
  40. WINDOW        this program creates a subroutine file that defines a 
  41.         window on the screen - something that the EXECUTIVE can
  42.         do but the OSBORNE 1 cant - you specify the rows and columns
  43.         of the upper left corner and the lower right corner of the
  44.         window and the number that you want the window to be called
  45.         for future reference, and the program makes up the subroutine
  46.         which you can then merge into another program - I have had up
  47.         to 9 windows on screen concurrently....
  48.  
  49. TRICKS        is a program that combines and improves upon two others,
  50.         namely OSBCARDS, published in the Portable Companion, and
  51.         BLACKJAK, author unknown - it uses the EXECUTIVE'S bank-
  52.         switching business and windowing capabilities to make an
  53.         interesting graphics-oriented blackjack game - my apologies
  54.         for the code - I am cleaning up someone else's mess and 
  55.         may have an improved version in the future - but note:
  56.         the original version worked fine and the author deserves
  57.         my gratitude - it was terribly difficult to see what was
  58.         going on, though!
  59.  
  60.  
  61.  
  62. VIDEONUM    this program just displays some of the key memory locations
  63.         corresponding to locations of the screen in video memory -
  64.                 when writing to the EXECUTIVE'S video memory using the bank-
  65.         switching code, one has to be aware that the memory addressed
  66.         which is the map of the screen is different from that of the 
  67.         OSBORNE 1 - this is one of the reasons that programs written
  68.         for that machine will often not run on the EXECUTIVE - also
  69.         one has to realize that the screen that you see is a sort of 
  70.         upper-left corner of the total video memory, so that when you
  71.         come to the end of a line and go to the next with a carriage
  72.         return, there is a gap in the memory addresses 
  73.  
  74.  
  75. FUNCTION    the EXECUTIVE terminal is allegedly patterned after the 
  76.         Televideo 950 - according to the Reference Guide, "..and uses
  77.         many of the same screen control characters..."
  78.         well, that's quite true - some work and some don't-
  79.         this program allows you to specify the ASCII codes of the
  80.         control codes so you can see the result - useful for such 
  81.         things as figuring out how to kill the cursor and make the 
  82.         screen blink in a hideous parody of a meltdown display on a 
  83.         reactor contol console.
  84.  
  85.     ************************************************************
  86.  
  87.     Any further information on using the EXECUTIVE would be greatly
  88.     appreciated.
  89.  
  90.