Interface Signal

interface Signal {
    type?: "wire" | "reg" | "const logic" | "logic" | "enum";
    width?: number;
    isClock?: "posedge" | "negedge";
    isReset?: "lowasync" | "highasync" | "lowsync" | "highsync";
    isSigned?: boolean;
    isArray?: bigint;
    description?: string;
    enum?: SVEnum;
    value?: bigint | bigint[];
}

Hierarchy

  • baseSignal
    • Signal

Properties

type?: "wire" | "reg" | "const logic" | "logic" | "enum"
width?: number
isClock?: "posedge" | "negedge"
isReset?: "lowasync" | "highasync" | "lowsync" | "highsync"
isSigned?: boolean
isArray?: bigint
description?: string
enum?: SVEnum
value?: bigint | bigint[]

Generated using TypeDoc