mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
lib/ip: extend dump by memory blocks
This commit is contained in:
parent
fcfb3d8020
commit
07137d73e6
1 changed files with 5 additions and 1 deletions
|
@ -322,9 +322,13 @@ IpCore::dump()
|
|||
{
|
||||
logger->info("IP: {}", *this);
|
||||
for(auto& [num, irq] : irqs) {
|
||||
logger->info("IRQ {}: {}:{}",
|
||||
logger->info(" IRQ {}: {}:{}",
|
||||
num, irq.irqController->getInstanceName(), irq.num);
|
||||
}
|
||||
|
||||
for(auto& [block, translation] : addressTranslations) {
|
||||
logger->info(" Memory {}: {}", block, translation);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue