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

DisassembleHWQ() private method

private DisassembleHWQ ( 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 DisassembleHWQ(string name, ushort operand, ushort nextword, ushort address, bool showMemoryContents, out ushort instructionSize)
        {
            instructionSize = 2;
            RegGeneral unused;
            ushort value;
            BitPatternHWQ(operand, out value, out unused);
            return $"{name,-8}${value:X2}";
        }