diff options
Diffstat (limited to 'src/vhdl/canon.ads')
-rw-r--r-- | src/vhdl/canon.ads | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vhdl/canon.ads b/src/vhdl/canon.ads index b78eaaa1c..40ce5088f 100644 --- a/src/vhdl/canon.ads +++ b/src/vhdl/canon.ads @@ -25,6 +25,15 @@ package Canon is -- If true, canon sequentials statements (processes and subprograms). Canon_Flag_Sequentials_Stmts : Boolean := False; + -- If true, canon concurrent statements. + Canon_Flag_Concurrent_Stmts : Boolean := True; + + -- If true, canon configuration. + Canon_Flag_Configurations : Boolean := True; + + -- If true, canon lists in specifications. + Canon_Flag_Specification_Lists : Boolean := True; + -- If true, canon expressions. Canon_Flag_Expressions : Boolean := False; |