Changeset 64


Ignore:
Timestamp:
Jul 21, 2010, 6:01:30 PM (14 years ago)
Author:
nipo
Message:

Use proper namespaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/half_gateway_target_2/caba/source/include/half_gateway_target_2.h

    r35 r64  
    9191     
    9292        // internal registers
    93         sc_signal<int>          r_ring_cmd_fsm;     // ring command packet FSM
    94         sc_signal<int>          r_ring_rsp_fsm;     // ring response packet FSM
     93        sc_core::sc_signal<int>         r_ring_cmd_fsm;     // ring command packet FSM
     94        sc_core::sc_signal<int>         r_ring_rsp_fsm;     // ring response packet FSM
    9595       
    9696           
     
    161161
    162162#ifdef HT_DEBUG_FSM
    163 if( trace(sc_time_stamp()))
    164     std::cout << sc_time_stamp() << " - " << m_name
     163if( trace(sc_core::sc_time_stamp()))
     164    std::cout << sc_core::sc_time_stamp() << " - " << m_name
    165165                                 << " - ring cmd = " << ring_cmd_fsm_state_str_ht[r_ring_cmd_fsm]
    166166                                 << " - ring rsp = " << ring_rsp_fsm_state_str_ht[r_ring_rsp_fsm]
     
    183183                case RSP_IDLE:   
    184184#ifdef HT_DEBUG
    185 if( trace(sc_time_stamp()))
    186 std::cout << sc_time_stamp() << " -- " << m_name << " -- ring_rsp_fsm : RSP_IDLE"
     185if( trace(sc_core::sc_time_stamp()))
     186std::cout << sc_core::sc_time_stamp() << " -- " << m_name << " -- ring_rsp_fsm : RSP_IDLE"
    187187          << " -- fifo rok : " <<  m_rsp_fifo.rok()
    188188          << " -- ring rok : " <<  p_ring_in.rsp_w
     
    199199                case DEFAULT: 
    200200#ifdef HT_DEBUG
    201 if( trace(sc_time_stamp()))
    202 std::cout << sc_time_stamp() << " -- " << m_name << " --  ring_rsp_fsm : DEFAULT "
     201if( trace(sc_core::sc_time_stamp()))
     202std::cout << sc_core::sc_time_stamp() << " -- " << m_name << " --  ring_rsp_fsm : DEFAULT "
    203203          << " -- fifo_rsp_rok : " << m_rsp_fifo.rok()
    204204          << " -- fifo_rsp_data : " << std::hex << m_rsp_fifo.read()
     
    220220                        {
    221221#ifdef HT_DEBUG
    222 if( trace(sc_time_stamp()))
    223 std::cout << sc_time_stamp() << " -- " << m_name << " -- ring_rsp_fsm : KEEP "
     222if( trace(sc_core::sc_time_stamp()))
     223std::cout << sc_core::sc_time_stamp() << " -- " << m_name << " -- ring_rsp_fsm : KEEP "
    224224          << " -- fifo_rok : " << m_rsp_fifo.rok()
    225225          << " -- ring_in_wok : " << p_ring_in.rsp_r
     
    253253 
    254254#ifdef HT_DEBUG
    255 if( trace(sc_time_stamp())) {
    256 std::cout     << sc_time_stamp() << " -- " << m_name
     255if( trace(sc_core::sc_time_stamp())) {
     256std::cout     << sc_core::sc_time_stamp() << " -- " << m_name
    257257              << " -- ring_cmd_fsm -- CMD_IDLE "
    258258              << " - in rok : " << p_ring_in.cmd_w
     
    302302
    303303#ifdef HT_DEBUG
    304 if( trace(sc_time_stamp()))
    305          std::cout << sc_time_stamp() << " -- " << m_name 
     304if( trace(sc_core::sc_time_stamp()))
     305         std::cout << sc_core::sc_time_stamp() << " -- " << m_name 
    306306              << " -- ring_cmd_fsm -- BROADCAST_0 "
    307307              << " -- ringin cmd rok : " << p_ring_in.cmd_w
     
    325325                {
    326326#ifdef HT_DEBUG
    327 if( trace(sc_time_stamp()))
    328          std::cout << sc_time_stamp() << " -- " << m_name
     327if( trace(sc_core::sc_time_stamp()))
     328         std::cout << sc_core::sc_time_stamp() << " -- " << m_name
    329329              << " -- ring_cmd_fsm -- BROADCAST_1 "
    330330              << " -- ringin cmd rok : " << p_ring_in.cmd_w
     
    355355                        bool eop = ( (int) ((p_ring_in.cmd_data >> (ring_cmd_data_size - 1) ) & 0x1) == 1);
    356356#ifdef HT_DEBUG
    357 if( trace(sc_time_stamp()))
    358          std::cout << sc_time_stamp() << " -- " << m_name
     357if( trace(sc_core::sc_time_stamp()))
     358         std::cout << sc_core::sc_time_stamp() << " -- " << m_name
    359359              << " -- ring_cmd_fsm -- LOCAL "
    360360              << " -- in cmd rok : " << p_ring_in.cmd_w
     
    391391                        bool eop = ( (int) ((p_ring_in.cmd_data >> (ring_cmd_data_size - 1) ) & 0x1) == 1);
    392392#ifdef HT_DEBUG
    393 if( trace(sc_time_stamp()))
    394          std::cout << sc_time_stamp() << " -- " << m_name
     393if( trace(sc_core::sc_time_stamp()))
     394         std::cout << sc_core::sc_time_stamp() << " -- " << m_name
    395395              << " -- ring_cmd_fsm -- RING "
    396396              << " -- in cmd rok : " << p_ring_in.cmd_w
     
    432432{
    433433        p_gate_target.cmd_w    = m_cmd_fifo.rok();
    434         p_gate_target.cmd_data = (sc_uint<ring_cmd_data_size>) m_cmd_fifo.read();
     434        p_gate_target.cmd_data = (sc_dt::sc_uint<ring_cmd_data_size>) m_cmd_fifo.read();
    435435
    436436        p_gate_target.rsp_r= m_rsp_fifo.wok();
Note: See TracChangeset for help on using the changeset viewer.