diff options
-rw-r--r-- | ghdl/ghdl.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ghdl/ghdl.cc b/ghdl/ghdl.cc index b2a2cf7..6926cfd 100644 --- a/ghdl/ghdl.cc +++ b/ghdl/ghdl.cc @@ -271,6 +271,10 @@ static void import_module(RTLIL::Design *design, GhdlSynth::Module m) case Id_Ule: case Id_Ugt: case Id_Uge: + case Id_Slt: + case Id_Sle: + case Id_Sgt: + case Id_Sge: case Id_Not: case Id_Red_Or: case Id_Red_And: @@ -374,6 +378,18 @@ static void import_module(RTLIL::Design *design, GhdlSynth::Module m) case Id_Uge: module->addGe(to_str(iname), IN(0), IN(1), OUT(0)); break; + case Id_Slt: + module->addLt(to_str(iname), IN(0), IN(1), OUT(0), true); + break; + case Id_Sle: + module->addLe(to_str(iname), IN(0), IN(1), OUT(0), true); + break; + case Id_Sgt: + module->addGt(to_str(iname), IN(0), IN(1), OUT(0), true); + break; + case Id_Sge: + module->addGe(to_str(iname), IN(0), IN(1), OUT(0), true); + break; case Id_Red_Or: module->addReduceOr(to_str(iname), IN(0), OUT(0)); break; |