interface Memory {
    capacity: number;
    frequency: number;
    isEcc: boolean;
    type: MemoryType;
}

Properties

capacity: number

Capacity of the memory.

frequency: number

Frequency of the memory.

isEcc: boolean

True if the memory is an error-correcting code memory.

Type of the memory.