aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate/execution.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/simulate/execution.ads')
-rw-r--r--src/vhdl/simulate/execution.ads7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vhdl/simulate/execution.ads b/src/vhdl/simulate/execution.ads
index 533b592f8..40be27391 100644
--- a/src/vhdl/simulate/execution.ads
+++ b/src/vhdl/simulate/execution.ads
@@ -45,6 +45,13 @@ package Execution is
end record;
type Process_State_Acc is access all Process_State_Type;
+ type Process_State_Array is
+ array (Process_Index_Type range <>) of aliased Process_State_Type;
+ type Process_State_Array_Acc is access Process_State_Array;
+
+ -- Array containing all processes.
+ Processes_State: Process_State_Array_Acc;
+
Simulation_Finished : exception;
-- Current process being executed. This is only for the debugger.