Ypsilon.Emulation.Processor.YCPU.DisassembleNoBits C# (CSharp) Method

DisassembleNoBits() private method

private DisassembleNoBits ( string name, ushort operand, ushort nextword, ushort address, bool showMemoryContents, ushort &instructionSize ) : string
name string
operand ushort
nextword ushort
address ushort
showMemoryContents bool
instructionSize ushort
return string
        private string DisassembleNoBits(string name, ushort operand, ushort nextword, ushort address, bool showMemoryContents, out ushort instructionSize)
        {
            instructionSize = 2;
            return string.Format(name);
        }