mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
20 lines
554 B
C#
20 lines
554 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using CPU = Indy.IL2CPU.Assembler.X86;
|
|
|
|
namespace Cosmos.IL2CPU.X86 {
|
|
public abstract class ILOp : Cosmos.IL2CPU.ILOp {
|
|
|
|
protected ILOp(ILOpCode aOpCode):base(aOpCode) {
|
|
Asmblr = ((CPU.Assembler)Indy.IL2CPU.Assembler.Assembler.CurrentInstance.Peek());
|
|
}
|
|
|
|
protected readonly CPU.Assembler Asmblr;
|
|
|
|
//TODO: remove this when all descendants implement this
|
|
public override void Execute(UInt32 aMethodUID) {
|
|
}
|
|
}
|
|
}
|