home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff344.lzh / RKMCompanion / Disk1.Contents < prev    next >
Text File  |  1990-04-14  |  6KB  |  151 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                     Contents of Companion Disk Number 1
  8.  
  9.                                  for the
  10.  
  11.             Amiga ROM Kernel Reference Manual: Libraries & Devices
  12.                   Copyright © 1990 by Commodore-Amiga, Inc.
  13.                    Addison-Wesley Publishing Company, Inc.
  14.                             ISBN 0-201-18187-8 
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.   Copyright © 1990 Commodore-Amiga, Inc.
  24.   
  25.   These examples are provided in electronic form by Commodore-Amiga, Inc. for
  26.   use with the 1.3 revisions of the Addison-Wesley Amiga reference manuals. 
  27.   The 1.3 Addison-Wesley Amiga Reference Manual series contains additional
  28.   information on the correct usage of the techniques and operating system
  29.   functions presented in these examples.  The source and executable code of
  30.   these examples may only be distributed in free electronic form, via bul-
  31.   letin board or as part of a fully non-commercial and freely redistributable
  32.   diskette.  Both the source and executable code (including comments) must
  33.   be included, without modification, in any copy.  These examples may not be
  34.   published in printed form or distributed with any commercial product.
  35.   However, the programming techniques and support routines set forth in
  36.   these examples may be used in the development of original executable
  37.   software products for Commodore Amiga computers.
  38.   All other rights reserved.
  39.   These examples are provided "as-is" and are subject to change;
  40.   no warranties are made.  All use is at your own risk.
  41.   No liability or responsibility is assumed.
  42.  
  43. Libraries
  44.  
  45. libraries/exec/interrupts/
  46.     timersoftint.c - timer.device example of a PA_SOFTINT port
  47.     rbf/ - exec interrupt handler example, plus flush/get serial resource
  48.     vertb/ - exec interrupt server example (vertical blank)
  49.  
  50. libraries/exec/io/
  51.     io_example.c - example of exec device io (trackdisk seek)
  52.  
  53. libraries/exec/list_queue/
  54.     lists.c - Example of using the EXEC list and node structures and system
  55.               calls.  It builds a list, displays it, finds something, and
  56.               frees the list.
  57.  
  58. libraries/exec/memory/
  59.     allocate - Shows usage of memorypool.
  60.     allocentry - Shows how to allocate multiple memoryblocks.
  61.  
  62. libraries/exec/msgs_ports/
  63.     port - Shows the usage of message ports.
  64.  
  65. libraries/exec/rebooting/
  66.     ColdReboot.asm - Official code to reset any Amiga (Version 2)
  67.  
  68. libraries/exec/tasks/
  69.     tasklist.c - disable example lists system task lists
  70.     liblist.c - forbid example lists current system libraries
  71.     simpletask.c - simple example of hand-created task
  72.     trap/ - exec trap handler example traps processor division by zero
  73.  
  74. libraries/graphics/primitives/
  75.     AreaInfoExample - Using AreaMove, Draw and End
  76.     BoxFill - Three methods of rendering a filled rectangle.
  77.     DualPF - Dual-PlayFields Example
  78.     HAMExample.c - Hold-And-Modify Example
  79.     RGBBoxes - A self-contained example of a single playfield display.
  80.     UserCopperExample - User Copper List Example
  81.  
  82. libraries/graphics/sprite_bob_anim/
  83.     ssprite/
  84.         ssprite.c - simple sprite example with ON/OFF_SPRITE.
  85.     vsprite/
  86.         vsprite.c - virtual sprite example with collision detection.
  87.     bob/
  88.         bob.c - bob example.
  89.     anim_ex/
  90.         anim_ex.c - short animation example for the manual.
  91.     anim/
  92.         anim.c - a more complete animation example.
  93.     animtools/
  94.         animtools.c - tools for the sprite-bob-animation examples.
  95.  
  96. libraries/graphics/text/
  97.     Wrapper - Routines common to most of the text (and graphics/primitives)
  98.               example code.
  99.     FontParade - Display all fonts available to the system.
  100.     ShowDefaultFont - Prints the name and size of the default font.
  101.     ShowDrawModes - Illustrates the different DrawModes.
  102.     ShowOpenFont - Illustrates how to request a font from OpenFont().
  103.     suits8.asm - A sparse (but complete) sample font.
  104.     suits/
  105.         8 - suits8.asm assembled down to an Amiga font.
  106.  
  107. libraries/intuition/IO/
  108.     idcmpdemo.c - How to receive Intuition events.
  109.     closewindowsafely.c - How to close a window that shares a port with
  110.                           other windows.
  111.  
  112. libraries/intuition/gadgets/
  113.     gadgets.c - How to implement string, proportional, and Boolean gadgets.
  114.                 Includes examples of Image, Border, and IntuiText structures.
  115.  
  116. libraries/intuition/intro/
  117.     main.c - The program shell we'll use for our Intuition examples.
  118.  
  119. libraries/intuition/menus/
  120.     menus.c - How to implement menus including extended selection,
  121.               mutual exclusion, checkmarks, and adaptation to differently
  122.               sized fonts.
  123.  
  124. libraries/intuition/mouse_keybd/
  125.     mousekeys.c - How to use rawkeys, mousebuttons, MOUSEMOVE,
  126.                   RawKeyConvert(), and DoubleClick().
  127.  
  128. libraries/intuition/other/
  129.     remembertest.c - Illustrates the use of AllocRemember() and
  130.                      FreeRemember().
  131.  
  132. libraries/intuition/req_alert/
  133.     autorequester.c - How to implement an autorequester.
  134.     displayalert.c - How to implement a recoverable alert.
  135.     dblmenureq.c - How to implement a double-menu requester that appears
  136.                    relative to the mouse pointer.
  137.  
  138. libraries/intuition/screens/
  139.     greetings.c - How to open a low-resolution screen and write to a window.
  140.     dualpf.c - How to create a dual-playfield display.
  141.  
  142. libraries/intuition/windows/
  143.     borderless.c - How to open a borderless backdrop window.
  144.     twowindows.c - Shows function of ACTIVATE flag, and how to get
  145.                    messages from two or more windows.
  146.     lines.c - How to implement a superbitmap window.
  147.  
  148. libraries/math/
  149.     ffpconv - shows the usage of the FFP conversion routines.
  150.  
  151.