mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
15 lines
No EOL
460 B
C#
15 lines
No EOL
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Compiler.Assembler.X86 {
|
|
[OpCode("iret")]
|
|
public class InterruptReturn: Instruction {
|
|
public static void InitializeEncodingData(Instruction.InstructionData aData) {
|
|
aData.EncodingOptions.Add(new InstructionData.InstructionEncodingOption {
|
|
OpCode = new byte[] { 0xCF }
|
|
});
|
|
}
|
|
}
|
|
} |