Changes between Version 28 and Version 29 of Writing Rules/Caba


Ignore:
Timestamp:
Nov 22, 2012, 4:58:29 PM (12 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Writing Rules/Caba

    v28 v29  
    237237    };
    238238
    239     // The registers must have the sc_signal type)
    240     sc_signal<int> r_vci_fsm;  // FSM state register
     239    // The registers must have the sc_signal type
     240    sc_signal<int>                         r_vci_fsm;  // FSM state register
    241241    sc_signal<typename vci_param::srcid_t> r_buf_srcid;
    242242    sc_signal<typename vci_param::trdid_t> r_buf_trdid;
     
    244244    sc_signal<typename vci_param::eop_t>   r_buf_eop;
    245245    sc_signal<bool>                        r_buf_value;
    246     sc_signal<bool>             *r_contents; // the loks array is allocated in constructor
    247 
    248     // The structural constants : segment assigned to this peripheral
    249     const soclib::common::Segment m_segment;
     246    sc_signal<bool>                       *r_contents; // the locks array is allocated in constructor
     247
     248    // The structural constants
     249    const soclib::common::Segment m_segment; // segment assigned to this peripheral
    250250
    251251protected: