mirror of https://github.com/PCSX2/pcsx2.git
17 lines
414 B
C#
17 lines
414 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GSDumpGUI
|
|
{
|
|
public class GIFRegUnimpl : GIFReg
|
|
{
|
|
static public GIFReg Unpack(GIFTag tag, int addr, UInt64 LowData, UInt64 HighData, bool PackedFormat)
|
|
{
|
|
GIFRegUnimpl u = new GIFRegUnimpl();
|
|
u.Descriptor = (GIFRegDescriptor)addr;
|
|
return u;
|
|
}
|
|
}
|
|
}
|