Cosmos/source2/Cosmos.Assembler.XSharp/RegisterDX.cs
kudzu_cp bde9fac959
2012-01-23 13:54:18 +00:00

15 lines
406 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Assembler.XSharp {
public class RegisterDX : Register16 {
public static readonly RegisterDX Instance = new RegisterDX();
public static implicit operator RegisterDX(UInt16 aValue) {
Instance.Move(aValue);
return Instance;
}
}
}