Cosmos/source/Indy.IL2CPU.Assembler.X86/Hlt.cs
ralfkronemeyer_cp 39a5c67a47
2008-06-25 09:19:22 +00:00

10 lines
No EOL
158 B
C#

using System;
using System.Linq;
namespace Indy.IL2CPU.Assembler.X86
{
[OpCode(0xF4, "hlt")]
public class Hlt : Instruction
{
}
}