mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
15 lines
418 B
C#
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;
|
|
}
|
|
}
|
|
}
|