mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
added x86 popf
added x86 cpuid
This commit is contained in:
parent
2373fb1a71
commit
26f7edf4e6
2 changed files with 24 additions and 0 deletions
12
source/Indy.IL2CPU.Assembler.X86/CpuId.cs
Normal file
12
source/Indy.IL2CPU.Assembler.X86/CpuId.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
12
source/Indy.IL2CPU.Assembler.X86/Popfd.cs
Normal file
12
source/Indy.IL2CPU.Assembler.X86/Popfd.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue