Ignore:
Timestamp:
Jun 29, 2009, 5:43:54 PM (15 years ago)
Author:
buchmann
Message:

Remove an unused regression test.
Update some other tests.
Add a TODO section into README file.
Disable some debugging compiler options for common users.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/test_regression/31072006/system_bug.cpp

    r1 r34  
    1313
    1414struct test : sc_module {
    15   int                             reg;
     15  sc_signal<int>                  reg;
    1616 
    1717  sc_in_clk                       clk;
     
    1919 
    2020  sc_out<int>                     o1;
    21   sc_inout<bool>                    o2;
     21  sc_out<bool>                    o2;
    2222
    2323  void trans ()
     
    2929      reg        = 0;
    3030    }
     31    reg = 2;
    3132  }
    3233
    3334  void gen ()
    3435  {
    35     o2 = 0;
    3636    o1 = reg;
    3737    o2 = reg & 1;
Note: See TracChangeset for help on using the changeset viewer.