mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
23 lines
486 B
C#
23 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using X86 = Indy.IL2CPU.Assembler.X86;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86.X {
|
|
public abstract class Register {
|
|
|
|
public void Push() {
|
|
new Push(ToString());
|
|
}
|
|
|
|
public void Pop() {
|
|
new Pop(ToString());
|
|
}
|
|
|
|
protected void Move(string aValue) {
|
|
new X86.Move(ToString(), aValue);
|
|
}
|
|
|
|
}
|
|
}
|