Cosmos/source2/IL2PCU/Cosmos.IL2CPU/ILOpCodes/OpInt64.cs
mterwoord_cp 2521402306
2009-09-18 12:06:27 +00:00

15 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.ILOpCodes {
public class OpInt64 : ILOpCode {
public readonly UInt64 Value;
public OpInt64(Code aOpCode, int aPos, int aNextPos, UInt64 aValue)
: base(aOpCode, aPos, aNextPos) {
Value = aValue;
}
}
}