   IFND    MEMORY_I
MEMORY_I     SET     1

;*
;* $VER: memory.i 1.0 (20 Dec 1995)
;*
;* memory.device - direct memory access
;*
;* (C) Copyright 1995 Marius Gröger
;*     All Rights Reserved
;*
;* Inspired by z2ram device in Linux/68k/Amiga
;*
;* 20 Dec 1995 : 001.000 :  created
;*

    IFND EXEC_TYPES_I
    INCLUDE "exec/types.i"
    ENDC

    IFND EXEC_LISTS_I
    INCLUDE "exec/lists.i"
    ENDC

    IFND EXEC_LIBRARIES_I
    INCLUDE "exec/libraries.i"
    ENDC

    IFND EXEC_SEMAPHORES_I
    INCLUDE "exec/semaphores.i"
    ENDC


;****************************************************************************


   ;
   ; Central driver static storage. See Flags bits below.
   ;
   STRUCTURE MemoryBase,LIB_SIZE
     BPTR   mb_SegList
     APTR   mb_SysBase
     STRUCT mb_Lock,SS_SIZE
   LABEL MemoryBase_SIZE


;****************************************************************************


   ENDC MEMORY_I
