Cosmos/source2/Compiler/Cosmos.Compiler.XSharp/RegisterESP.cs

15 lines
418 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Compiler.Assembler.X86.X {
public class RegisterESP : Register32 {
public static readonly RegisterESP Instance = new RegisterESP();
public static implicit operator RegisterESP(UInt32 aValue) {
Instance.Move(aValue);
return Instance;
}
}
}