Ignore:
Timestamp:
Apr 14, 2009, 8:39:12 PM (15 years ago)
Author:
rosiere
Message:

1) Add modelsim simulation systemC
2) Modelsim cosimulation systemC / VHDL is not finish !!!! (cf execute_queue and write_unit)
3) Add multi architecture
5) Add template for comparator, multiplier and divider
6) Change Message
Warning) Various test macro have change, many selftest can't compile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/include/Debug.h

    r112 r113  
    2424 */
    2525
     26#include "Common/include/Systemc.h"
    2627#include "Common/include/Message.h"
    2728#include "Common/include/FromString.h"
     
    6465#define debug_test_simulation_time                                      \
    6566  (not debug_cycle_test or                                              \
    66    ( (sc_simulation_time() >= debug_cycle_start) and                    \
    67     ((sc_simulation_time() <= debug_cycle_stop) or                      \
     67   ( (simulation_cycle() >= debug_cycle_start) and                    \
     68    ((simulation_cycle() <= debug_cycle_stop) or                      \
    6869      (debug_cycle_stop == -1))))
    6970#else
     
    149150  do                                                                    \
    150151    {                                                                   \
    151       log_printf(TRACE,component,func,_("[%d] %s.%s"),static_cast<uint32_t>(sc_simulation_time()),name,func); \
     152      log_printf(TRACE,component,func,_("[%d] %s.%s"),static_cast<uint32_t>(simulation_cycle()),name,func); \
    152153    } while(0)
    153154
Note: See TracChangeset for help on using the changeset viewer.