aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/simulate')
-rw-r--r--src/vhdl/simulate/simul-debugger.adb7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/vhdl/simulate/simul-debugger.adb b/src/vhdl/simulate/simul-debugger.adb
index c257b909d..82eec793e 100644
--- a/src/vhdl/simulate/simul-debugger.adb
+++ b/src/vhdl/simulate/simul-debugger.adb
@@ -23,7 +23,7 @@ with Types; use Types;
with Name_Table;
with Str_Table;
with Files_Map;
-with Parse;
+with Vhdl.Parse;
with Vhdl.Scanner;
with Vhdl.Tokens;
with Sem_Expr;
@@ -1337,7 +1337,8 @@ package body Simul.Debugger is
Len := Len + 1;
P := P + 1;
end loop;
- Break_Id := Parse.Str_To_Operator_Name (Str, Len, No_Location);
+ Break_Id := Vhdl.Parse.Str_To_Operator_Name
+ (Str, Len, No_Location);
-- FIXME: free string.
-- FIXME: catch error.
end;
@@ -1901,7 +1902,7 @@ package body Simul.Debugger is
Line (P .. Line'Last));
Vhdl.Scanner.Set_File (File);
Vhdl.Scanner.Scan;
- Expr := Parse.Parse_Expression;
+ Expr := Vhdl.Parse.Parse_Expression;
if Vhdl.Scanner.Current_Token /= Tok_Eof then
Put_Line ("garbage at end of expression ignored");
end if;