Changeset 94 for trunk/IPs/systemC/processor/Morpheo/Behavioural/include
- Timestamp:
- Dec 15, 2008, 12:04:03 PM (16 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Version.h
r93 r94 10 10 #define MORPHEO_MAJOR_VERSION 0 11 11 #define MORPHEO_MINOR_VERSION 2 12 #define MORPHEO_REVISION "9 3"12 #define MORPHEO_REVISION "94" 13 13 #define MORPHEO_CODENAME "Castor" 14 14 15 #define MORPHEO_DATE_DAY "1 4"15 #define MORPHEO_DATE_DAY "15" 16 16 #define MORPHEO_DATE_MONTH "12" 17 17 #define MORPHEO_DATE_YEAR "2008" -
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Vhdl.h
r93 r94 23 23 namespace behavioural { 24 24 25 std::string std_logic (uint32_t size);26 std::string std_logic_conv (uint32_t size, std::string value);27 std::string std_logic_conv (uint32_t size, uint32_t value);28 std::string std_logic_range (uint32_t size, uint32_t max , uint32_t min);29 std::string std_logic_range (uint32_t max , uint32_t min);30 std::string std_logic_range (uint32_t size);31 std::string std_logic_others (uint32_t size, uint32_t cst);25 std::string std_logic (uint32_t size); 26 std::string std_logic_conv (uint32_t size, std::string value); 27 std::string std_logic_conv (uint32_t size, uint32_t value); 28 std::string std_logic_range (uint32_t size, uint32_t max , uint32_t min , bool force=false); 29 std::string std_logic_range ( uint32_t max , uint32_t min , bool force=false); 30 std::string std_logic_range (uint32_t size, bool force=false); 31 std::string std_logic_others (uint32_t size, bool cst); 32 32 33 33 class Vhdl … … 125 125 private : std::string get_body (uint32_t depth ); 126 126 public : void set_body (std::string text ); 127 128 public : void set_body (Vhdl * vhdl ); 129 127 public : void set_body (uint32_t depth , 128 std::string text ); 129 130 public : void set_body (uint32_t depth , 131 Vhdl * vhdl ); 130 132 public : void set_body_component (std::string name_instance , 131 133 std::string name_component , … … 136 138 std::string name_signal , 137 139 uint32_t size_signal ); 140 141 public : void set_comment (std::string text ); 142 public : void set_comment (uint32_t depth , 143 std::string text ); 138 144 139 145 private : std::string get_library_ieee (uint32_t depth );
Note: See TracChangeset
for help on using the changeset viewer.