[aes] Add missing includes in PRNGs
Signed-off-by: Pirmin Vogel <vogelpi@lowrisc.org>
diff --git a/hw/ip/aes/rtl/aes_prng_clearing.sv b/hw/ip/aes/rtl/aes_prng_clearing.sv
index 3ebeef7..ea5d26e 100644
--- a/hw/ip/aes/rtl/aes_prng_clearing.sv
+++ b/hw/ip/aes/rtl/aes_prng_clearing.sv
@@ -8,6 +8,8 @@
// pseudo-random data for the AES module for clearing registers. The LFSR can be reseeded
// using an external interface.
+`include "prim_assert.sv"
+
module aes_prng_clearing import aes_pkg::*;
#(
parameter int unsigned Width = 64, // At the moment we just support a width of 64.
diff --git a/hw/ip/aes/rtl/aes_prng_masking.sv b/hw/ip/aes/rtl/aes_prng_masking.sv
index a99914b..8e25e26 100644
--- a/hw/ip/aes/rtl/aes_prng_masking.sv
+++ b/hw/ip/aes/rtl/aes_prng_masking.sv
@@ -17,6 +17,8 @@
// for masking purposes. //
///////////////////////////////////////////////////////////////////////////////////////////////////
+`include "prim_assert.sv"
+
module aes_prng_masking import aes_pkg::*;
#(
parameter int unsigned Width = WidthPRDMasking, // Must be divisble by ChunkSize and 8.