home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / Manuels & Misc / Assembly / AOA.ZIP / README.AOA < prev    next >
Encoding:
Text File  |  1996-03-29  |  3.7 KB  |  114 lines

  1. "ART OF Assembly Language Programming" support files.
  2. These are the source and sample files to accompany 
  3. Randy Hyde's text "The Art of Assembly Language Programming".
  4.  
  5. (c) Copyright 1995 by Randall L. Hyde.
  6.  
  7. Permission is hereby granted to copy these files by individuals
  8. for the purposes of learning 80x86 assembly language programming.
  9. Institutions, corporations, etc. may obtain permission by sending
  10. a copyright request to
  11.  
  12.     rhyde@cs.ucr.edu
  13.  
  14. explaining the need for these files.
  15.  
  16. Note that the Standard Library files (stdlib directory) 
  17. are public domain.  There is no need to request permission
  18. for their use.
  19.  
  20.  
  21.  
  22. -----------------------------------------------------------------------------
  23.  
  24. RPTEDIT Word Processing Program.
  25.  
  26. This package includes a simple word processing program (RPTEDIT.EXE) that
  27. allows you to prepare laboratory reports in the event you do not have
  28. access to another word processor.  This program was written with Borland
  29. Delphi using the Visual Solutions Pack.  Unfortunately, Borland's
  30. License agreement does not allow distributing source code for this product
  31. (since it includes quite a bit of some of their sample code).  Those
  32. who are interested in writing their own word processor (similar to RPTEDIT)
  33. should obtain a copy of the Borland RAD pack for Delphi.
  34.  
  35. The RPTEDIT program is a fairly straight-forward word processor.  Anyone who
  36. has ever used a Windows-based word processor will feel right at home with
  37. RPTEDIT.  By default, RPTEDIT reads and writes files in its own format
  38. (using the ".RPT" filename suffix).  It can also read and write files in the
  39. rich text format (files with the ".RTF" suffix).
  40.  
  41. In addition to the options available in the menus and on the ruler, RPTEDIT
  42. supports the following mouse and keyboard operations:
  43.  
  44. Mouse Assignment
  45.  
  46. Mouse Action        Reaction of Text-Control
  47.  
  48. Click            Moves cursor to point of click or selects an image.
  49.  
  50. Shift+Click        Extends the selection to the point of click.
  51.  
  52. Double-click        Selects the word that is clicked on or opens a modal 
  53.             dialog box to select an image alignment.
  54.  
  55. Drag            Selects text from point of button down to point where 
  56.             button is released.
  57.  
  58. Double-click and drag    Extends the selection from word to word.
  59.  
  60. Triple-click and drag    Extends the selection from row to row.
  61.  
  62. PgUp/PgDown        Scrolls the text up or down one client area height 
  63.             minus the height of one line of text. Active only 
  64.             if a vertical scrollbar exists.
  65.  
  66.  
  67. Moving the caret while SHIFT is pressed extends the current selection to 
  68. the new caret position. 
  69.  
  70. Keyboard Assignment
  71.  
  72. Key type        Reaction of Text-Control
  73.  
  74. HOME            Moves the caret to the beginning of the line.
  75.  
  76. END            Moves the caret to the end of the line.
  77.  
  78. (Left Arrow)        Moves the caret one character to the left.
  79.  
  80. (Right Arrow)        Moves the caret one character to the right.
  81.  
  82. (Up Arrow)        Moves the caret one line up.
  83.  
  84. (Down Arrow)        Moves the caret one line down.
  85.  
  86. CTRL+(Left Arrow)    Moves the caret to the beginning of the current word.
  87.  
  88. CTRL+(Right Arrow)    Moves the caret to the beginning of the next word.
  89.  
  90. CTRL+HOME        Moves the caret to start of text.
  91.  
  92. CTRL+END        Moves the caret to end of text.
  93.  
  94. CTRL+ENTER        Inserts a new page.
  95.  
  96. SHIFT+ENTER        Creates a line feed.
  97.  
  98. CTRL+(-)        Inserts an end-of-line hyphen.
  99.  
  100. DEL            Deletes selected text.
  101.  
  102. SHIFT+DEL        Copies selected text to the Clipboard and deletes 
  103.             the selection.
  104.  
  105. CTRL+INS        Copies selected text to the clipboard.
  106.  
  107. SHIFT+INS        Inserts text from the clipboard.
  108.  
  109. CTRL+SHIFT+(Spacebar)    Inserts a non-breaking space.
  110.  
  111. CTRL+(Backspace)    Deletes the previous word.
  112.  
  113. Moving the caret while SHIFT is pressed extends the current selection to 
  114. the new caret position.