getLogic method

Logic getLogic(
  1. Module module
)

Return the internal Logic signal that represents the configuration, either static or runtime.

Implementation

Logic getLogic(Module module) =>
    staticConfig ? Const(1) : (getRuntimeInput(module) ?? Const(0));