mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
15 lines
No EOL
390 B
C#
15 lines
No EOL
390 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.IL2CPU.X86
|
|
{
|
|
[OpCode("hlt")]
|
|
public class Halt : Instruction
|
|
{
|
|
public static void InitializeEncodingData(Instruction.InstructionData aData) {
|
|
aData.EncodingOptions.Add(new InstructionData.InstructionEncodingOption {
|
|
OpCode= new byte[]{0xF4}
|
|
});
|
|
}
|
|
}
|
|
} |