From 26f7edf4e6d1dcce691a86709f8a862ac2022f6b Mon Sep 17 00:00:00 2001 From: smremde_cp <2296c648a83df9531cb573d8dfdead9aa751ab92VfNzPxkR> Date: Wed, 11 Jun 2008 17:06:55 +0000 Subject: [PATCH] added x86 popf added x86 cpuid --- source/Indy.IL2CPU.Assembler.X86/CpuId.cs | 12 ++++++++++++ source/Indy.IL2CPU.Assembler.X86/Popfd.cs | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 source/Indy.IL2CPU.Assembler.X86/CpuId.cs create mode 100644 source/Indy.IL2CPU.Assembler.X86/Popfd.cs diff --git a/source/Indy.IL2CPU.Assembler.X86/CpuId.cs b/source/Indy.IL2CPU.Assembler.X86/CpuId.cs new file mode 100644 index 000000000..654068018 --- /dev/null +++ b/source/Indy.IL2CPU.Assembler.X86/CpuId.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Indy.IL2CPU.Assembler.X86 +{ + [OpCode(0xFFFFFFFF, "cpuid")] + public class CpuId : Instruction + { + } +} \ No newline at end of file diff --git a/source/Indy.IL2CPU.Assembler.X86/Popfd.cs b/source/Indy.IL2CPU.Assembler.X86/Popfd.cs new file mode 100644 index 000000000..6be21f9ab --- /dev/null +++ b/source/Indy.IL2CPU.Assembler.X86/Popfd.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Indy.IL2CPU.Assembler.X86 +{ + [OpCode(0xFFFFFFFF, "popfd")] + public class Popfd : Instruction + { + } +} \ No newline at end of file