aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate/simul-execution.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 07:49:25 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 08:05:11 +0200
commit85d360929d13e6b0bcb082f144883a43f402ce22 (patch)
treef8d8135e12393588b7704318f26304dfab272658 /src/vhdl/simulate/simul-execution.adb
parent3c48cc2a70085eef63718e622b3d1a7b75a2f36f (diff)
downloadghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.gz
ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.bz2
ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.zip
vhdl: move std_standard package to vhdl child.
Diffstat (limited to 'src/vhdl/simulate/simul-execution.adb')
-rw-r--r--src/vhdl/simulate/simul-execution.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vhdl/simulate/simul-execution.adb b/src/vhdl/simulate/simul-execution.adb
index 3a1c11028..59d91c8ef 100644
--- a/src/vhdl/simulate/simul-execution.adb
+++ b/src/vhdl/simulate/simul-execution.adb
@@ -22,7 +22,7 @@ with System;
with Grt.Types; use Grt.Types;
with Flags; use Flags;
with Errorout; use Errorout;
-with Std_Package;
+with Vhdl.Std_Package;
with Evaluation;
with Iirs_Utils; use Iirs_Utils;
with Simul.Annotations; use Simul.Annotations;
@@ -1321,7 +1321,7 @@ package body Simul.Execution is
Pos : constant Natural := Get_Enum_Pos (Left);
Id : Name_Id;
begin
- if Base_Type = Std_Package.Character_Type_Definition then
+ if Base_Type = Vhdl.Std_Package.Character_Type_Definition then
Result := String_To_Iir_Value ((1 => Character'Val (Pos)));
else
Id := Get_Identifier (Get_Nth_Element (Lits, Pos));
@@ -1418,7 +1418,7 @@ package body Simul.Execution is
First : Natural;
Unit : Iir;
begin
- Unit := Get_Unit_Chain (Std_Package.Time_Type_Definition);
+ Unit := Get_Unit_Chain (Vhdl.Std_Package.Time_Type_Definition);
while Unit /= Null_Iir loop
exit when Evaluation.Get_Physical_Value (Unit)
= Iir_Int64 (Right.I64);