Ignore:
Timestamp:
Dec 6, 2007, 8:57:49 PM (17 years ago)
Author:
rosiere
Message:

Ajout d'un nouveau composant : fifo generic (un port lecture et un port ecriture).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/SelfTest/src/test.cpp

    r55 r67  
    5959   * Déclarations des signaux
    6060   *********************************************************************/
    61   sc_clock                               * in_CLOCK;
    62   sc_signal<Tcontrol_t>                  * in_NRESET;
    63 
    6461  string rename;
    6562
    66   in_CLOCK                                = new sc_clock ("clock", 1.0, 0.5);
    67   in_NRESET                              = new sc_signal<Tcontrol_t> ("NRESET");
     63  sc_clock              *  in_CLOCK  = new sc_clock ("clock", 1.0, 0.5);         
     64  sc_signal<Tcontrol_t> *  in_NRESET = new sc_signal<Tcontrol_t> ("NRESET");
    6865 
    6966  /********************************************************
     
    9491  LABEL("Initialisation");
    9592
     93  LABEL("Reset");
     94  in_NRESET->write(0);
     95  SC_START(5);
     96  in_NRESET->write(1); 
     97
    9698  LABEL("Loop of Test");
    9799
Note: See TracChangeset for help on using the changeset viewer.