Renaming libDRAMPowerIF to libDRAMPowerDummy.

This commit is contained in:
Lukas Steiner (2)
2019-08-26 16:26:28 +02:00
parent 2402180a9c
commit 7934d2e160
4 changed files with 4 additions and 4 deletions

View File

@@ -70,7 +70,7 @@ protected:
StorageMode StoreMode = Configuration::getInstance().StoreMode;
unsigned char *memory;
libDRAMPowerIF *DRAMPower;
libDRAMPowerDummy *DRAMPower;
virtual tlm_sync_enum nb_transport_fw(tlm_generic_payload &payload,
tlm_phase &phase, sc_time &delay);

View File

@@ -143,5 +143,5 @@ DramDDR3::DramDDR3(sc_module_name name) : Dram(name)
DRAMPower = new libDRAMPower(powerSpec, 0);
}
else
DRAMPower = new libDRAMPowerIF();
DRAMPower = new libDRAMPowerDummy();
}

View File

@@ -143,5 +143,5 @@ DramDDR4::DramDDR4(sc_module_name name) : Dram(name)
DRAMPower = new libDRAMPower(powerSpec, 0);
}
else
DRAMPower = new libDRAMPowerIF();
DRAMPower = new libDRAMPowerDummy();
}

View File

@@ -164,7 +164,7 @@ DramWideIO::DramWideIO(sc_module_name name) : Dram(name)
{
if (StoreMode == StorageMode::ErrorModel)
SC_REPORT_FATAL("DramWideIO", "Error modeling without power analysis is not supported");
DRAMPower = new libDRAMPowerIF();
DRAMPower = new libDRAMPowerDummy();
}
}