aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate/simul-grt_interface.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-04-20 07:49:03 +0200
committerTristan Gingold <tgingold@free.fr>2020-04-20 12:19:48 +0200
commitcb72a1834f160d95d026b7e466886fd95fd82146 (patch)
tree87cd0fff5a8ce03b05b8e6a0a0129b60de90fe61 /src/vhdl/simulate/simul-grt_interface.adb
parentb6d42a577f4ee5f2084a165b0cdf66cadcc878a1 (diff)
downloadghdl-cb72a1834f160d95d026b7e466886fd95fd82146.tar.gz
ghdl-cb72a1834f160d95d026b7e466886fd95fd82146.tar.bz2
ghdl-cb72a1834f160d95d026b7e466886fd95fd82146.zip
types: introduce Direction_Type, which replaces Iir_Direction.
Global renaming.
Diffstat (limited to 'src/vhdl/simulate/simul-grt_interface.adb')
-rw-r--r--src/vhdl/simulate/simul-grt_interface.adb6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/vhdl/simulate/simul-grt_interface.adb b/src/vhdl/simulate/simul-grt_interface.adb
index e485d7d18..32e6f7b54 100644
--- a/src/vhdl/simulate/simul-grt_interface.adb
+++ b/src/vhdl/simulate/simul-grt_interface.adb
@@ -16,11 +16,13 @@
-- Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-- 02111-1307, USA.
+with Types; use Types;
+
with Vhdl.Nodes; use Vhdl.Nodes;
package body Simul.Grt_Interface is
- To_Dir : constant array (Iir_Direction) of Ghdl_Dir_Type :=
- (Iir_To => Dir_To, Iir_Downto => Dir_Downto);
+ To_Dir : constant array (Direction_Type) of Ghdl_Dir_Type :=
+ (Dir_To => Dir_To, Dir_Downto => Dir_Downto);
function Build_Bound (Arr : Iir_Value_Literal_Acc) return Std_String_Bound
is