Cosmos/source/Cosmos.IL2CPU/IL/Volatile.cs
José Pedro eff94b0f11 Improved code organization.
Added method tests.
Implemented Rethrow opcode.
2017-01-27 17:01:51 +00:00

18 lines
370 B
C#

using System;
using CPU = Cosmos.Assembler.x86;
namespace Cosmos.IL2CPU.X86.IL
{
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Volatile)]
public class Volatile: ILOp
{
public Volatile(Cosmos.Assembler.Assembler aAsmblr):base(aAsmblr)
{
}
public override void Execute(MethodInfo aMethod, ILOpCode aOpCode)
{
//TODO: Volatile
}
}
}