mirror of https://github.com/PCSX2/pcsx2.git
27 lines
763 B
C#
27 lines
763 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GSDumpGUI
|
|
{
|
|
public class GIFRegNOP : GIFReg
|
|
{
|
|
public int addr;
|
|
|
|
public GIFRegNOP(int addr, UInt64 LowData, UInt64 HighData, bool PackedFormat) : base(addr, LowData, HighData, PackedFormat) { }
|
|
|
|
static public GIFReg Unpack(GIFTag tag, int addr, UInt64 LowData, UInt64 HighData, bool PackedFormat)
|
|
{
|
|
GIFRegNOP nop = new GIFRegNOP(addr, LowData, HighData, PackedFormat);
|
|
nop.Descriptor = GIFRegDescriptor.NOP;
|
|
|
|
return nop;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Descriptor.ToString() + " (0x" + addr.ToString("X2") + ")";
|
|
}
|
|
}
|
|
}
|