ID:10268 Verilog HDL information at <location>: always construct contains both blocking and non-blocking assignments

CAUSE: In an always construct in a Verilog Design File (.v), you mixed blocking and non-blocking assignments. Although Verilog HDL permits you to mix both types of assignments, doing so can introduce subtle bugs into your HDL source; it can also introduce differences between the simulated behavior of the design and the synthesized netlist. In general, you should use blocking assignments in always constructs that model combinational logic and non-blocking assignments in always construct that model sequential logic.

ACTION: No action is required.