Input_Delay <= shift_left(Input_Delay, 1); Input_Delay(0) <= Input; -- FYI: Same Code not using Shift Operator: Input_Delay(1) <= Input_Delay(0); Input_Delay(2) <= Input_Delay(1); Input_Delay(3) <= Input_Delay(2); ...
Odin II is an open-source research project, and full Verilog language coverage is a work in progress. This work extends Odin II's Verilog support to files containing the arithmetic right shift operator (>>>) and both the + : and - : part-select operators. It also adds support for ...