Skip to content

Bug - Opcode Exception fix #1

@robertvo

Description

@robertvo

my Fix starting from line 133 in MethodInstructions.css:

            int valor;
            if (int.TryParse(insert.textBox1.Text, out valor))
            {
                if (opcode.OperandType == OperandType.ShortInlineI)
                {
                    sbyte x = (sbyte)valor;
                    sentence = worker.Create(opcode, x);
                }
                else sentence = worker.Create(opcode, valor);
            }
            else
            {
                sentence = worker.Create(opcode, insert.textBox1.Text);
            }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions