CPU Simulator
    Preparing search index...
    interface AssemblyLanguageDefinition {
        addressable_registers: {
            aliases: undefined | string[];
            code: string;
            name: string;
        }[];
        addressModes: { code: string; name: string }[];
        comment_format: string;
        instruction_types: { code: string; name: string }[];
        instructions: {
            address_modes: string[];
            illegal_combinations_of_operand_types:
                | undefined
                | { __SOURCE__: string; __TARGET__: string }[];
            mnemonic: string;
            opcode: string;
            operands: undefined | { allowed_types: string[]; name: string }[];
            regex: string;
            type: string;
        }[];
        label_formats: { declaration: string; usage: string };
        number_formats: { binary: string; decimal: string; hexadecimal: string };
        operand_types: { code: string; name: string; regex: string }[];
    }
    Index

    Properties

    addressable_registers: {
        aliases: undefined | string[];
        code: string;
        name: string;
    }[]
    addressModes: { code: string; name: string }[]
    comment_format: string
    instruction_types: { code: string; name: string }[]
    instructions: {
        address_modes: string[];
        illegal_combinations_of_operand_types:
            | undefined
            | { __SOURCE__: string; __TARGET__: string }[];
        mnemonic: string;
        opcode: string;
        operands: undefined | { allowed_types: string[]; name: string }[];
        regex: string;
        type: string;
    }[]
    label_formats: { declaration: string; usage: string }
    number_formats: { binary: string; decimal: string; hexadecimal: string }
    operand_types: { code: string; name: string; regex: string }[]