Skip to content

Commit b4daf94

Browse files
authored
Merge pull request #299 from cpc/endianess-fix
Endianess fix
2 parents 922b5e1 + 126ac24 commit b4daf94

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

openasip/CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

1417
Deprecation notice
1518
------------------

openasip/src/tools/LLVMIRTools.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ std::string
111111
LLVMIRTools::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 = \"")

0 commit comments

Comments
 (0)