Ignore:
Timestamp:
May 29, 2013, 6:05:44 PM (11 years ago)
Author:
meunier
Message:
  • Tried to fix a problem with echo
  • Started to resolve some tests failing (often because of the test itself)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/test_regression/14092005/system.cpp

    r55 r56  
    1010
    1111struct hard : sc_module {
    12     sc_in_clk       clk;
    13     sc_in<bool>     resetn;
    14     sc_in <int>     i1;
    15     sc_out<int>     o1;
    16     sc_signal <int> r1;
     12    sc_in_clk      clk;
     13    sc_in<bool>    resetn;
     14    sc_in <int>    i1;
     15    sc_out<int>    o1;
     16    sc_signal<int> r1;
    1717
    1818    void fg() {
     
    4949    hard a("a");
    5050
    51     a.clk   (clk1);
     51    a.clk(clk1);
    5252    a.resetn(resetn);
    5353
     
    5656
    5757    /* Open trace file */
    58     sc_trace_file *system_trace_file;
    59     system_trace_file = sc_create_vcd_trace_file ("trace_file");
     58    sc_trace_file * system_trace_file;
     59    system_trace_file = sc_create_vcd_trace_file("trace_file");
    6060
    6161    /* clks waveforms are always useful */
Note: See TracChangeset for help on using the changeset viewer.