From 70d902c7a1776b2d6fd9b3917fe5be723e6ff605 Mon Sep 17 00:00:00 2001
From: Eric Kooistra <kooistra@astron.nl>
Date: Mon, 18 Sep 2023 15:08:02 +0200
Subject: [PATCH] Add t_natural_matrix

---
 libraries/base/common/src/vhdl/common_pkg.vhd | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libraries/base/common/src/vhdl/common_pkg.vhd b/libraries/base/common/src/vhdl/common_pkg.vhd
index 1814c90570..9fdebec875 100644
--- a/libraries/base/common/src/vhdl/common_pkg.vhd
+++ b/libraries/base/common/src/vhdl/common_pkg.vhd
@@ -131,6 +131,7 @@ package common_pkg is
   constant c_nat_boolean_arr : t_nat_boolean_arr := (true, false);  -- array the two possible boolean values that can be iterated over
 
   type t_integer_matrix is array (integer range <>, integer range <>) of integer;
+  type t_natural_matrix is array (integer range <>, integer range <>) of natural;
   type t_boolean_matrix is array (integer range <>, integer range <>) of boolean;
   type t_sl_matrix      is array (integer range <>, integer range <>) of std_logic;
   type t_slv_8_matrix   is array (integer range <>, integer range <>) of std_logic_vector(7 downto 0);
-- 
GitLab