home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / varia / memory-device / source / memory.i < prev    next >
Text File  |  1977-12-31  |  919b  |  51 lines

  1.    IFND    MEMORY_I
  2. MEMORY_I     SET     1
  3.  
  4. ;*
  5. ;* $VER: memory.i 1.0 (20 Dec 1995)
  6. ;*
  7. ;* memory.device - direct memory access
  8. ;*
  9. ;* (C) Copyright 1995 Marius Gröger
  10. ;*     All Rights Reserved
  11. ;*
  12. ;* Inspired by z2ram device in Linux/68k/Amiga
  13. ;*
  14. ;* 20 Dec 1995 : 001.000 :  created
  15. ;*
  16.  
  17.     IFND EXEC_TYPES_I
  18.     INCLUDE "exec/types.i"
  19.     ENDC
  20.  
  21.     IFND EXEC_LISTS_I
  22.     INCLUDE "exec/lists.i"
  23.     ENDC
  24.  
  25.     IFND EXEC_LIBRARIES_I
  26.     INCLUDE "exec/libraries.i"
  27.     ENDC
  28.  
  29.     IFND EXEC_SEMAPHORES_I
  30.     INCLUDE "exec/semaphores.i"
  31.     ENDC
  32.  
  33.  
  34. ;****************************************************************************
  35.  
  36.  
  37.    ;
  38.    ; Central driver static storage. See Flags bits below.
  39.    ;
  40.    STRUCTURE MemoryBase,LIB_SIZE
  41.      BPTR   mb_SegList
  42.      APTR   mb_SysBase
  43.      STRUCT mb_Lock,SS_SIZE
  44.    LABEL MemoryBase_SIZE
  45.  
  46.  
  47. ;****************************************************************************
  48.  
  49.  
  50.    ENDC MEMORY_I
  51.