Improvement

This commit is contained in:
Éder F. Zulian
2018-07-11 10:24:51 +02:00
parent 19919dc9bc
commit 3827dd413a

View File

@@ -105,10 +105,10 @@ sc_dt::uint64 xmlAddressDecoder::encodeAddress(DecodedAddress n)
void xmlAddressDecoder::print()
{
cout << "Used addressmapping:" << endl;
cout << headline << endl;
cout << "Address Mapping:" << endl << endl;
for (auto &pair : masks) {
cout << pair.first << "\t:\t" << bitset<32>(pair.second) << endl;
cout << std::setw(16) << pair.first << ": " << bitset<48>(pair.second) << endl;
}
cout << "\n" << endl;
cout << endl;
}