Group RAM data 40 bytes per row

This commit is contained in:
Miodrag Milanovic 2025-03-20 12:50:18 +01:00
parent 2645240bf9
commit dd3591cfa9
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ std::string ChipConfig::to_string() const
std::ios_base::fmtflags f(ss.flags());
for (size_t i = 0; i < bram.second.size(); i++) {
ss << std::setw(2) << std::setfill('0') << std::hex << (int)bram.second.at(i);
if (i % 32 == 31)
if (i % 40 == 39)
ss << std::endl;
else
ss << " ";