aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/ghdlsynth_gates.h
diff options
context:
space:
mode:
authorPepijn de Vos <pepijndevos@gmail.com>2019-07-16 18:40:53 +0200
committertgingold <tgingold@users.noreply.github.com>2019-07-16 18:40:53 +0200
commitdb958a4299a5b22c6ed6a7ae634e0bbe534708ac (patch)
tree301866ca2c7e1af61f12a26c79f624e8975b67a1 /src/synth/ghdlsynth_gates.h
parent32933b13ec02e0ea60504d9c2c354c198e8e5c13 (diff)
downloadghdl-db958a4299a5b22c6ed6a7ae634e0bbe534708ac.tar.gz
ghdl-db958a4299a5b22c6ed6a7ae634e0bbe534708ac.tar.bz2
ghdl-db958a4299a5b22c6ed6a7ae634e0bbe534708ac.zip
synth: add > and >= operators (#870)
* synth: add > and >= operators * synth: update ghdlsynth_gates.h
Diffstat (limited to 'src/synth/ghdlsynth_gates.h')
-rw-r--r--src/synth/ghdlsynth_gates.h47
1 files changed, 24 insertions, 23 deletions
diff --git a/src/synth/ghdlsynth_gates.h b/src/synth/ghdlsynth_gates.h
index b923652aa..ed5fd5a48 100644
--- a/src/synth/ghdlsynth_gates.h
+++ b/src/synth/ghdlsynth_gates.h
@@ -40,27 +40,28 @@ enum Module_Id {
Id_Signal = 35,
Id_Isignal = 36,
Id_Output = 37,
- Id_Dff = 38,
- Id_Adff = 39,
- Id_Idff = 40,
- Id_Iadff = 41,
- Id_Utrunc = 42,
- Id_Strunc = 43,
- Id_Uextend = 44,
- Id_Sextend = 45,
- Id_Extract = 46,
- Id_Dyn_Extract = 47,
- Id_Insert = 48,
- Id_Dyn_Insert = 49,
- Id_Edge = 50,
- Id_Assert = 51,
- Id_Assume = 52,
- Id_Const_UB32 = 56,
- Id_Const_SB32 = 57,
- Id_Const_UB64 = 58,
- Id_Const_SB64 = 59,
- Id_Const_UB128 = 60,
- Id_Const_SB128 = 61,
- Id_Const_UL32 = 62,
- Id_Const_SL32 = 63,
+ Id_Port = 38,
+ Id_Dff = 40,
+ Id_Adff = 41,
+ Id_Idff = 42,
+ Id_Iadff = 43,
+ Id_Utrunc = 46,
+ Id_Strunc = 47,
+ Id_Uextend = 48,
+ Id_Sextend = 49,
+ Id_Extract = 50,
+ Id_Dyn_Extract = 51,
+ Id_Insert = 52,
+ Id_Dyn_Insert = 53,
+ Id_Edge = 55,
+ Id_Assert = 56,
+ Id_Assume = 57,
+ Id_Const_UB32 = 64,
+ Id_Const_SB32 = 65,
+ Id_Const_UB64 = 66,
+ Id_Const_SB64 = 67,
+ Id_Const_UB128 = 68,
+ Id_Const_SB128 = 69,
+ Id_Const_UL32 = 70,
+ Id_Const_SL32 = 71,
};