File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ Main changes and features
1010 instruction selection for RISC-V custom instructions.
1111- Added feature to generate SFUs with RISC-V custom instructions
1212 that can be interfaced with CV-X and ROCC interfaces, utilizing FUGen.
13+ - Added register file generator (RFGen), which allows RF RTL to be directly
14+ generated from ADF descriptions. Verilog and VHDL supported.
15+ - Improved Verilog RTL generation, especially in FUGen.
1316
1417Deprecation notice
1518------------------
Original file line number Diff line number Diff line change @@ -111,10 +111,10 @@ std::string
111111LLVMIRTools::targetInfo (bool littleEndian) const {
112112 std::string targetInfoStr = " target datalayout = \" " ;
113113 if (littleEndian){
114- targetInfoStr += DataLayoutStringBE ;
114+ targetInfoStr += DataLayoutStringLE ;
115115 }
116116 else {
117- targetInfoStr += DataLayoutStringLE ;
117+ targetInfoStr += DataLayoutStringBE ;
118118 }
119119 targetInfoStr += " \"\n " ;
120120 targetInfoStr += std::string (" target triple = \" " )
You can’t perform that action at this time.
0 commit comments