getsLogic method

  1. @override
void getsLogic(
  1. Logic other
)
override

Connects this port to be driven by a Logic other.

This is a direct connection where the Logic signal drives this reference. Prefer to use gets or other higher-level connection methods when possible.

Implementation

@override
void getsLogic(Logic other) {
  _externalPort <= other;
}