From 6d82c0d1569f29b3ec1fcf7213d03027bfb7f2b7 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Tue, 31 May 2016 19:25:31 -0700 Subject: [PATCH] Add M_FLUSH_ALL command --- uncore/src/main/scala/consts.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uncore/src/main/scala/consts.scala b/uncore/src/main/scala/consts.scala index ed6db122..14904463 100644 --- a/uncore/src/main/scala/consts.scala +++ b/uncore/src/main/scala/consts.scala @@ -26,7 +26,7 @@ trait MemoryOpConstants { val M_PFR = UInt("b00010"); // prefetch with intent to read val M_PFW = UInt("b00011"); // prefetch with intent to write val M_XA_SWAP = UInt("b00100"); - val M_NOP = UInt("b00101"); + val M_FLUSH_ALL = UInt("b00101") // flush all lines val M_XLR = UInt("b00110"); val M_XSC = UInt("b00111"); val M_XA_ADD = UInt("b01000");