mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
Literal and Invoke
This commit is contained in:
parent
9cf16ce76a
commit
0587aa1db3
3 changed files with 20 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
9
source/Indy.IL2CPU.Assembler/Invoke.cs
Normal file
9
source/Indy.IL2CPU.Assembler/Invoke.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Indy.IL2CPU.Assembler {
|
||||
class Invoke : Instruction {
|
||||
}
|
||||
}
|
||||
9
source/Indy.IL2CPU.Assembler/Literal.cs
Normal file
9
source/Indy.IL2CPU.Assembler/Literal.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Indy.IL2CPU.Assembler {
|
||||
class Literal : Instruction {
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue