C64Lib.Core.MOS6502_1541.illegal_op C# (CSharp) Method

illegal_op() private method

private illegal_op ( byte op, UInt16 at ) : void
op byte
at System.UInt16
return void
        void illegal_op(byte op, UInt16 at)
        {
            throw new IllegalOpcodeException(String.Format("1541: Illegal opcode ${0:X4} at ${1:X2}", op, at));

            //if (ShowRequester(illop_msg, "Reset 1541", "Reset C64"))
            //    the_c64->Reset();
            //Reset();
        }