diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-03-31 07:34:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-03-31 18:29:05 +0200 |
commit | d8afbddcf37ea68a19b6edfa4820ef3bdd0c5076 (patch) | |
tree | b51452cd7023564f5500c8b61a26c568dead732f /src/synth/ghdlsynth_gates.h | |
parent | 5aa87ef99e4f5ba046d215ac6d99a645ce7a0e1d (diff) | |
download | ghdl-d8afbddcf37ea68a19b6edfa4820ef3bdd0c5076.tar.gz ghdl-d8afbddcf37ea68a19b6edfa4820ef3bdd0c5076.tar.bz2 ghdl-d8afbddcf37ea68a19b6edfa4820ef3bdd0c5076.zip |
synth: preliminary work to export module parameters.
Diffstat (limited to 'src/synth/ghdlsynth_gates.h')
-rw-r--r-- | src/synth/ghdlsynth_gates.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth/ghdlsynth_gates.h b/src/synth/ghdlsynth_gates.h index aa4053010..e22aa4713 100644 --- a/src/synth/ghdlsynth_gates.h +++ b/src/synth/ghdlsynth_gates.h @@ -5,7 +5,8 @@ enum Module_Id { Id_Free = 1, Id_Design = 2, Id_User_None = 128, - Id_User_First = Id_User_None + 1, + Id_User_Parameters = 129, + Id_User_First = Id_User_Parameters + 1, Id_And = 3, Id_Or = 4, Id_Xor = 5, |