diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-08-28 10:18:38 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-08-28 13:22:30 +0200 |
commit | 3c8db435b536117eeceb65693e2493033a3d664b (patch) | |
tree | 5d04b6801028c400140567ee2825cb45d4bfdb84 /src/synth | |
parent | c6ff96cb67935a59fe78f692974cfa5870b5f1d3 (diff) | |
download | ghdl-3c8db435b536117eeceb65693e2493033a3d664b.tar.gz ghdl-3c8db435b536117eeceb65693e2493033a3d664b.tar.bz2 ghdl-3c8db435b536117eeceb65693e2493033a3d664b.zip |
ghdlsynth: add debug option for elaboration
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-flags.ads | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/synth/synth-flags.ads b/src/synth/synth-flags.ads index f9a1dfe87..a4034a073 100644 --- a/src/synth/synth-flags.ads +++ b/src/synth/synth-flags.ads @@ -55,6 +55,9 @@ package Synth.Flags is Flag_Trace_Statements : Boolean := False; + -- Display source of elaborated design. + Flag_Debug_Elaborate : Boolean := False; + -- True to start debugger at elaboration. Flag_Debug_Init : Boolean := False; |