diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-08-19 06:12:36 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-08-19 06:49:51 +0200 |
commit | 21bab65e5ed98ba4b1db124a635c0de31af08818 (patch) | |
tree | 2ac1b22d51747dde7a61d16215eb410cde18fac3 /src/simul/simul-vhdl_elab.ads | |
parent | fe6edccd9c03f40878cc1d27b07c024407d63bff (diff) | |
download | ghdl-21bab65e5ed98ba4b1db124a635c0de31af08818.tar.gz ghdl-21bab65e5ed98ba4b1db124a635c0de31af08818.tar.bz2 ghdl-21bab65e5ed98ba4b1db124a635c0de31af08818.zip |
simul: handle resolved signals (WIP)
Diffstat (limited to 'src/simul/simul-vhdl_elab.ads')
-rw-r--r-- | src/simul/simul-vhdl_elab.ads | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/simul/simul-vhdl_elab.ads b/src/simul/simul-vhdl_elab.ads index 14ca462a0..c17555920 100644 --- a/src/simul/simul-vhdl_elab.ads +++ b/src/simul/simul-vhdl_elab.ads @@ -50,6 +50,7 @@ package Simul.Vhdl_Elab is type Driver_Index_Type is new Nat32; subtype Sensitivity_Index_Type is Driver_Index_Type; + No_Process_Index : constant Process_Index_Type := 0; No_Driver_Index : constant Driver_Index_Type := 0; No_Sensitivity_Index : constant Sensitivity_Index_Type := 0; @@ -64,7 +65,7 @@ package Simul.Vhdl_Elab is package Processes_Table is new Tables (Table_Component_Type => Proc_Record_Type, Table_Index_Type => Process_Index_Type, - Table_Low_Bound => 1, + Table_Low_Bound => No_Process_Index + 1, Table_Initial => 128); type Simultaneous_Record is record |