home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / kaypro / dump24.doc < prev    next >
Text File  |  1984-07-21  |  3KB  |  59 lines

  1.  
  2.  
  3. Using Dump24
  4.  
  5. To use the screen to printer dump simply enter DUMP24 <carriage return>.
  6. From then until you either reset your computer (with the button in back)
  7. or turn it off, every time you hold the control key down and strike the W
  8. (enter control W) every thing that you see on the screen of your Kaypro
  9. will be sent to the printer. This is true even if you are in another program
  10. such as DDT or your text editor.
  11.  
  12. Some people will not want to use control W for the screen dump character.
  13. You may change the character to any thing you want but realize that the
  14. character you use will be unavailable for its old purpose. Using control
  15. W has worked for me because the only time I use to use control W was in
  16. my text editor to move the cursor to the end of the next word. When the
  17. screen dump is on this is no longer the case. Control W dumps the screen
  18. to the printer and the editor never sees it.
  19.  
  20. To change the screen dump character use DDT. The process goes as follows.
  21. Everything behind the semicolons are my comments:
  22.  
  23. A>DDT DUMP24.COM    ;1. Enter this...DDT.COM must be on the disk  
  24. DDT VERS 2.2
  25. NEXT PC        ;2. DDT prints this information about the program
  26. 0200 0100    ;     and itself
  27. -S10B        ;3. The minus sign is DDT's prompt I entered "S10B"
  28. 010B 17 00    ;4. DDT printed the first 2 #'s I entered the number
  29.         ;   of the new character to use for the ScreenDump (00)
  30. 010C 32 .    ;5. DDT printed the first 2 numbers I entered the period
  31. -^C        ;6. I enter a control C to exit DDT
  32. Warm Boot    ;7. The computers response
  33.  
  34. A>SAVE 1 NEWDS.COM    ;8. Now save as a file called NEWDS.COM
  35. A>
  36.  
  37. In the above I changed the dump screen character form 17 hex(control W) to
  38. 00 hex (control @). The hex numbers for the control characters are listed
  39. below. Now if I hit the reset button and enter NEWDS a control @ will dump
  40. the screen to the printer.
  41.      
  42. HEX  CHAR        ASCII DESIGNATION     HEX  CHAR        ASCII DESIGNATION 
  43. 00 - control @   NUL                   10 - control P   DLE 
  44. 01 - control A   SOH                   11 - control Q   DC1     
  45. 02 - control B   STX                   12 - control R   DC2
  46. 03 - control C   ETX                   13 - control S   DC3
  47. 04 - control D   EOT                   14 - control T   DC4
  48. 05 - control E   ENQ                   15 - control U   NAK
  49. 06 - control F   ACK                   16 - control V   SYN
  50. 07 - control G   BELL                  17 - control W   ETB
  51. 08 - control H   BackSpace             18 - control X   CAN
  52. 09 - control I   HorizontalTab           19 - control Y   EM
  53. 0A - control J   LineFeed              1A - control Z   SUB
  54. 0B - control K   VerticalTab           1B - control [   ESCape
  55. 0C - control L   FormFeed              1C - control \   FS
  56. 0D - control M   CarriageReturn        1D - control ]   GS
  57. 0E - control N   SO                    1E - control ^   RS
  58. 0F - control O   SI                    1F - control _   US
  59.