Renaming libDRAMPowerIF to libDRAMPowerDummy.
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -143,5 +143,5 @@ DramDDR3::DramDDR3(sc_module_name name) : Dram(name)
|
||||
DRAMPower = new libDRAMPower(powerSpec, 0);
|
||||
}
|
||||
else
|
||||
DRAMPower = new libDRAMPowerIF();
|
||||
DRAMPower = new libDRAMPowerDummy();
|
||||
}
|
||||
|
||||
@@ -143,5 +143,5 @@ DramDDR4::DramDDR4(sc_module_name name) : Dram(name)
|
||||
DRAMPower = new libDRAMPower(powerSpec, 0);
|
||||
}
|
||||
else
|
||||
DRAMPower = new libDRAMPowerIF();
|
||||
DRAMPower = new libDRAMPowerDummy();
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user