Ignore:
Timestamp:
Apr 15, 2008, 8:40:01 PM (16 years ago)
Author:
rosiere
Message:
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Usage.h

    • Property svn:keywords set to Id
    r57 r81  
    11#ifndef morpheo_behavioural_Usage_h
    22#define morpheo_behavioural_Usage_h
     3
     4#include <stdint.h>
    35
    46namespace morpheo {
     
    79  typedef uint8_t Tusage_t;
    810
    9 #define USE_SYSTEMC        0x01
    10 #define USE_VHDL           0x02
    11 #define USE_VHDL_TESTBENCH 0x04
    12 #define USE_STATISTICS     0x08
    13 #define USE_POSITION       0x10
    14 #define USE_ALL            0x1F
     11#  define USE_SYSTEMC               0x01
     12#  define USE_VHDL                  0x02
     13#  define USE_VHDL_TESTBENCH        0x04
     14#  define USE_VHDL_TESTBENCH_ASSERT 0x08
     15#  define USE_POSITION              0x10
     16#  define USE_STATISTICS            0x20
     17#  define USE_INFORMATION           0x40
     18//#define USE_                      0x80
     19
     20#  define USE_NONE                  0x00
     21//#define USE_ALL                   0xff
     22#  define USE_ALL                   usage_all()
     23
     24
     25  Tusage_t usage_set         (Tusage_t usage, Tusage_t flag);
     26  Tusage_t usage_unset       (Tusage_t usage, Tusage_t flag);
     27  bool     usage_is_set      (Tusage_t usage, Tusage_t flag);
     28  void     usage_environment (Tusage_t usage);
     29  Tusage_t usage_all         (void);
    1530
    1631}; // end namespace behavioural
Note: See TracChangeset for help on using the changeset viewer.