localFlop method

Logic localFlop(
  1. Logic input
)

Pipelining helper that uses the context for signals clk/enable/reset

Implementation

Logic localFlop(Logic input) =>
    condFlop(clk, input, en: enable, reset: reset);