Cosmos/source2/Compiler/Cosmos.Compiler.XSharp/RegisterEDX.cs
kudzu_cp ef031a2039
2011-07-17 19:44:26 +00:00

20 lines
518 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Compiler.XSharp {
public class RegisterEDX : Register32 {
public static readonly RegisterEDX Instance = new RegisterEDX();
public static implicit operator RegisterEDX(MemoryAction aAction) {
Instance.Move(aAction);
return Instance;
}
public static implicit operator RegisterEDX(UInt32 aValue) {
Instance.Move(aValue);
return Instance;
}
}
}