diff options
Diffstat (limited to 'src/mem/dramsim2.cc')
-rw-r--r-- | src/mem/dramsim2.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mem/dramsim2.cc b/src/mem/dramsim2.cc index 106ea264f..b900d4df0 100644 --- a/src/mem/dramsim2.cc +++ b/src/mem/dramsim2.cc @@ -53,7 +53,8 @@ DRAMSim2::DRAMSim2(const Params* p) : p->traceFile, p->range.size() / 1024 / 1024, p->enableDebug), retryReq(false), retryResp(false), startTick(0), nbrOutstandingReads(0), nbrOutstandingWrites(0), - sendResponseEvent(this), tickEvent(this) + sendResponseEvent([this]{ sendResponse(); }, name()), + tickEvent([this]{ tick(); }, name()) { DPRINTF(DRAMSim2, "Instantiated DRAMSim2 with clock %d ns and queue size %d\n", |