aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-environment.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-06-07 06:24:57 +0200
committerTristan Gingold <tgingold@free.fr>2019-06-07 07:55:43 +0200
commit42a04ac8722e89e4454f89ccf540599d10b418f0 (patch)
tree63421d6f853df90e384b6550b1e3af71e67a23e5 /src/synth/synth-environment.ads
parent81f1788b76c4ca8bc4c735754f1858cbb810cf32 (diff)
downloadghdl-42a04ac8722e89e4454f89ccf540599d10b418f0.tar.gz
ghdl-42a04ac8722e89e4454f89ccf540599d10b418f0.tar.bz2
ghdl-42a04ac8722e89e4454f89ccf540599d10b418f0.zip
synth: add comments.
Diffstat (limited to 'src/synth/synth-environment.ads')
-rw-r--r--src/synth/synth-environment.ads9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/synth/synth-environment.ads b/src/synth/synth-environment.ads
index 6b5c4af31..ca1fcf709 100644
--- a/src/synth/synth-environment.ads
+++ b/src/synth/synth-environment.ads
@@ -41,9 +41,12 @@ package Synth.Environment is
-- nature of a wire as the assignment semantic is not the same (a variable
-- assignment overwrite the old value, while a signal assignment is
-- effective at the next cycle).
- type Wire_Kind is (Wire_None,
- Wire_Signal, Wire_Variable,
- Wire_Input, Wire_Output, Wire_Inout);
+ type Wire_Kind is
+ (
+ Wire_None,
+ Wire_Signal, Wire_Variable,
+ Wire_Input, Wire_Output, Wire_Inout
+ );
type Assign is new Uns32;
No_Assign : constant Assign := 0;