File: /home/oboss/Users/gec/sources/Demonstrator/Data_Handling_System/memory_manager-data_memory.ads

1     --% Compilation Unit:	Memory_Manager.Data_Memory
2     --
3     --% Category: Package Declaration
4     --
5     --% Release:  $Name:  $
6     --
7     --% Version:  $Revision: 2.1 $
8     --
9     --% Author:   $Author: gec $
10     --
11     --% Revision Log:
12     --    $Log: memory_manager-data_memory.ads,v $
13     --    Revision 2.1  2004/02/13 16:16:36  gec
14     --    Merged results of Demonstrator development on to main OBOSS trunk.
15     --
16     --    Revision 1.1.2.1  2003/12/10 15:56:30  gec
17     --    Updated instance of memory management service in accordance with 'Demonstrator Test Case Specification'.
18     --
19     --
20     --% Project: OBOSS
21     --
22     --% Copyright (C) 2003 by Terma A/S
23     --  Proprietary and intellectual rights of Terma A/S, Denmark,
24     --  are involved in the subject-matter of this material and
25     --  all manufacturing, reproduction, use, disclosure, and
26     --  sales rights pertaining to such subject-matter are
27     --  expressly reserved. This material is submitted for a
28     --  specific purpose as agreed, and the recipient by
29     --  accepting this material agrees that this material will
30     --  not be used, copied, or reproduced in whole or in part
31     --  nor its contents revealed in any manner or to any person,
32     --  except to meet the purpose for which it was submitted and
33     --  subject to the terms of the agreement.
34     --
35     --% Target Dependencies:
36     --    None
37     --% Compiler Dependencies:
38     --    None
39     
40     with Memory_Access;
41     with Memory_Manager.Parameters;
42     package Memory_Manager.Data_Memory is new Memory_Access
43              (Block_Start_Address =>
44                  Memory_Manager.Parameters.Data_Memory.Start_Address,
45               Block_End_Address =>
46                  Memory_Manager.Parameters.Data_Memory.End_Address,
47               Block_Access_Kind =>
48                  Memory_Manager.Parameters.Data_Memory.Access_Kind);
49