source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Version.h @ 95

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

1) Update Prediction Table - New architecture (systemC) done (and tested) -> need change interface in top level
2) Change documentation on VHDL generation
3) Change VHDL constant (case std_logic and std_logic_vector)

  • Property svn:keywords set to Id
File size: 1.1 KB
RevLine 
[81]1#ifndef morpheo_behavioural_Version_h
2#define morpheo_behavioural_Version_h
3
[85]4/*
5 * $Id: Version.h 95 2008-12-16 16:24:26Z rosiere $
6 */
7
[81]8#include "Common/include/ToString.h"
9
10#define MORPHEO_MAJOR_VERSION 0
11#define MORPHEO_MINOR_VERSION 2
[95]12#define MORPHEO_REVISION      "95"
[88]13#define MORPHEO_CODENAME      "Castor"
[81]14
[95]15#define MORPHEO_DATE_DAY      "16" 
[90]16#define MORPHEO_DATE_MONTH    "12"
17#define MORPHEO_DATE_YEAR     "2008"
[88]18
[81]19#define MORPHEO_VERSION       morpheo::toString(MORPHEO_MAJOR_VERSION)+"."+morpheo::toString(MORPHEO_MINOR_VERSION)+"."+morpheo::toString(MORPHEO_REVISION)
[88]20#define MORPHEO_HEADER        morpheo::toString(MORPHEO_VERSION)+" - "+morpheo::toString(MORPHEO_CODENAME)
21#define MORPHEO_DATE          morpheo::toString(MORPHEO_DATE_YEAR)+"/"+morpheo::toString(MORPHEO_DATE_MONTH)+"/"+morpheo::toString(MORPHEO_DATE_DAY)
[81]22
[85]23/*
24 [ Change Log ]
25 |
26 +-[ Major Version 0 ]
27   |
28   | SystemC Only
29   |
[88]30   +-[ Minor Version 1 ] - Castor
[85]31   | |
32   | | Second Architecture, change the load_store_unit and implement exception
33   |
34   +-[ Minor Version 0 ]
35   | |
36   | | First Architecture, not in this svn
37*/
38
[81]39#endif
Note: See TracBrowser for help on using the repository browser.