drivesLogic method

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

Drives a Logic other with this port.

This directly connects the other signal to be driven by this reference. Prefer to use gets or other higher-level connection methods when possible.

Implementation

@override
void drivesLogic(Logic other) {
  other <= portSubsetLogic;
}