Commit c0b24ad4 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Jakob Görgen
Browse files

lib/simbricks/axi_subordinate: more reasonable defaults for MaxInFlight

parent a78b6f0f
......@@ -58,7 +58,7 @@ struct AXIOperation {
/* Acts as the read part of an AXI Subordinate / Slave component */
template <size_t BytesAddr, size_t BytesId, size_t BytesData,
size_t MaxInFlight = 64>
size_t MaxInFlight = 16>
class AXISubordinateRead {
public:
static_assert(BytesAddr <= 8);
......@@ -146,7 +146,7 @@ class AXISubordinateRead {
/* Acts as the write part of an AXI Subordinate / Slave component */
template <size_t BytesAddr, size_t BytesId, size_t BytesData,
size_t MaxInFlight = 64>
size_t MaxInFlight = 16>
class AXISubordinateWrite {
public:
static_assert(BytesAddr <= 8);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment