Experimantal change for a big FIFO

This commit is contained in:
Matthias Jung
2014-09-08 13:09:52 +02:00
parent 33a13d6bfd
commit 9fb90e9015

View File

@@ -11,6 +11,7 @@
#include <map>
#include <string>
#include <vector>
#include<iostream>
#include "/opt/systemc-2.3.0/include/systemc"
#include "/opt/systemc-2.3.0/include/tlm"
@@ -349,7 +350,9 @@ void Controller<BUSWIDTH>::frontendPEQCallback(tlm_generic_payload &payload, con
printDebugMessage("##Backpressure released");
backpressure->set_response_status(tlm::TLM_OK_RESPONSE);
sendToFrontend(*backpressure, END_REQ, SC_ZERO_TIME);
scheduler->schedule(backpressure);
// FIFOOOOOOOOOOO
//scheduler->schedule(backpressure);
controllerCore->scheduleRequest(*backpressure);
scheduleNextPayload();
backpressure = NULL;
}