Unflip i and j.

This commit is contained in:
Rasmus Munk Larsen 2023-09-28 19:39:09 -07:00
parent 01a015747e
commit 12218a4c74
1 changed files with 2 additions and 2 deletions

View File

@ -321,7 +321,7 @@ std::string RTLIL::Const::decode_string() const
if (i < n) {
char ch = 0;
for (int j = 0; j < (n - i); j++) {
if (bits[j + i] == RTLIL::State::S1) {
if (bits[i + j] == RTLIL::State::S1) {
ch |= 1 << j;
}
}
@ -332,7 +332,7 @@ std::string RTLIL::Const::decode_string() const
for (; i >= 0; i -= 8) {
char ch = 0;
for (int j = 0; j < 8; j++) {
if (bits[j + i] == RTLIL::State::S1) {
if (bits[i + j] == RTLIL::State::S1) {
ch |= 1 << j;
}
}