source: trunk/modules/vci_mem_cache/caba/metadata/vci_mem_cache.sd @ 2

Last change on this file since 2 was 2, checked in by nipo, 14 years ago

Import TSAR modules in TSAR's own svn

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to "Author Date Id Rev URL Revision"
  • Property svn:mime-type set to text/plain
File size: 1.0 KB
Line 
1
2# -*- python -*-
3
4__id__ = "$Id: vci_mem_cache.sd 2 2010-03-26 18:02:36Z nipo $"
5__version__ = "$Revision: 2 $"
6
7Module('caba:vci_mem_cache',
8       classname = 'soclib::caba::VciMemCache',
9       tmpl_parameters = [parameter.Module('vci_param', default = 'caba:vci_param'),],
10       header_files = ['../source/include/vci_mem_cache.h',
11                       '../source/include/xram_transaction.h',
12                       '../source/include/mem_cache_directory.h',
13                       '../source/include/atomic_tab.h',
14                       '../source/include/update_tab.h',],
15       implementation_files = ['../source/src/vci_mem_cache.cpp',],
16       uses = [Uses('caba:base_module'),
17               Uses('common:loader'),
18               Uses('common:mapping_table'),
19               Uses('caba:generic_fifo'),
20               ],
21       ports = [Port('caba:vci_target', 'p_vci_tgt'),
22                Port('caba:vci_initiator','p_vci_init'),
23                Port('caba:bit_in', 'p_resetn', auto = 'resetn'),
24                Port('caba:clock_in', 'p_clk', auto = 'clock'),],
25       extensions = ['dsx:get_ident=ident:p_vci',],
26)
Note: See TracBrowser for help on using the repository browser.