Literal and Invoke

This commit is contained in:
kudzu_cp 2007-08-30 16:07:38 +00:00
parent 9cf16ce76a
commit 0587aa1db3
3 changed files with 20 additions and 0 deletions

View file

@ -53,7 +53,9 @@
<Compile Include="DataMember.cs" />
<Compile Include="Instruction.cs" />
<Compile Include="InstructionCPU.cs" />
<Compile Include="Invoke.cs" />
<Compile Include="Label.cs" />
<Compile Include="Literal.cs" />
<Compile Include="OpCodeAttribute.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

View file

@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler {
class Invoke : Instruction {
}
}

View file

@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler {
class Literal : Instruction {
}
}