added x86 popf

added x86 cpuid
This commit is contained in:
smremde_cp 2008-06-11 17:06:55 +00:00
parent 2373fb1a71
commit 26f7edf4e6
2 changed files with 24 additions and 0 deletions

View file

@ -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
{
}
}

View file

@ -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
{
}
}