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

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

Update DSX metadata

  • 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
RevLine 
[2]1
2# -*- python -*-
3
4__id__ = "$Id: vci_mem_cache.sd 20 2010-04-14 03:27:59Z nipo $"
5__version__ = "$Revision: 20 $"
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'),
[20]22                Port('caba:vci_initiator','p_vci_init'),
[2]23                Port('caba:bit_in', 'p_resetn', auto = 'resetn'),
24                Port('caba:clock_in', 'p_clk', auto = 'clock'),],
25)
Note: See TracBrowser for help on using the repository browser.