source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Register_unit_Glue/src/Register_unit_Glue_genMealy_spr_write.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1#ifdef SYSTEMC
2//#if defined(STATISTICS) or defined(VHDL_TESTBENCH)
3/*
4 * $Id: Register_unit_Glue_genMealy_spr_write.cpp 88 2008-12-10 18:31:39Z rosiere $
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Register_unit_Glue/include/Register_unit_Glue.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace core {
15namespace multi_execute_loop {
16namespace execute_loop {
17namespace register_unit {
18namespace register_unit_glue {
19
20
21#undef  FUNCTION
22#define FUNCTION "Register_unit_Glue::genMealy_spr_write"
23  void Register_unit_Glue::genMealy_spr_write (void)
24  {
25    log_begin(Register_unit_Glue,FUNCTION);
26    log_function(Register_unit_Glue,FUNCTION,_name.c_str());
27
28//     if (not PORT_READ(in_NRESET))
29//       {
30//      for (uint32_t j=0; j<_param->_nb_spr_write; j++)
31//        for (uint32_t i=0; i<_param->_nb_ooo_engine; i++)
32//          PORT_WRITE(out_SPR_WRITE_ACK [j], 0);
33//       }
34//     else
35      {
36        for (uint32_t j=0; j<_param->_nb_spr_write; j++)
37          {
38            Tcontext_t ooo_engine_id    = (_param->_have_port_ooo_engine_id == true)?PORT_READ(in_SPR_WRITE_OOO_ENGINE_ID[j]):0;
39            Tcontrol_t registerfile_ack = PORT_READ(in_SPR_WRITE_REGISTERFILE_ACK [ooo_engine_id][j]);
40            Tcontrol_t status_ack       = PORT_READ(in_SPR_WRITE_STATUS_ACK       [ooo_engine_id][j]);
41           
42            // multiplexor
43            PORT_WRITE(out_SPR_WRITE_ACK [j],registerfile_ack and status_ack);
44          }
45      }
46
47    log_end(Register_unit_Glue,FUNCTION);
48  };
49
50}; // end namespace register_unit_glue
51}; // end namespace register_unit
52}; // end namespace execute_loop
53}; // end namespace multi_execute_loop
54}; // end namespace core
55
56}; // end namespace behavioural
57}; // end namespace morpheo             
58#endif
59//#endif
Note: See TracBrowser for help on using the repository browser.