drivesLogic method

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

Drives a Logic signal with this port's value.

This connects the other signal to be driven by this port.

Implementation

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