Interface Signal

A Signal represents a immutable message that is provided to a chip when it activates, as well as when it terminates. A signal has a name and an optional map of strings to data.

Because Signal is an interface, it cannot be created with new. Instead, call makeSignal() to create one.

interface Signal {
    name: string;
    params: SignalParams;
}

Properties

Properties

name: string
params: SignalParams

Generated using TypeDoc