source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Environnement.h @ 78

Last change on this file since 78 was 78, checked in by rosiere, 16 years ago

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 723 bytes
Line 
1#if (defined(STATISTICS) and not defined(SYSTEMC))
2#  error "To have the statistics, you must set flags SYSTEMC"
3#endif
4
5#if (defined(VHDL_TESTBENCH) and not defined(SYSTEMC))
6#  error "To have the vhdl's test bench, you must set flags SYSTEMC"
7#endif
8
9#if (defined(VHDL_TESTBENCH) and not defined(VHDL))
10#  error "To have the vhdl's test bench, you must set flags VHDL"
11#endif
12
13#if (defined(VHDL_TESTBENCH_ASSERT) and not defined(VHDL_TESTBENCH))
14#  error "To have an assert in vhdl's test bench, you must set flags VHDL_TESTBENCH"
15#endif
16
17#if (defined(VHDL_TESTBENCH) and defined(SYSTEMC))
18#  define SYSTEMC_VHDL_COMPATIBILITY
19#endif
20
21#if (defined(DEBUG))
22#  define DEBUG_TEST
23#endif
24
25#define MORPHEO_HOME "MORPHEO_HOME"
Note: See TracBrowser for help on using the repository browser.