From 0587aa1db3fda18e772cdce80b54838f5d57718d Mon Sep 17 00:00:00 2001 From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498> Date: Thu, 30 Aug 2007 16:07:38 +0000 Subject: [PATCH] Literal and Invoke --- .../Indy.IL2CPU.Assembler/Indy.IL2CPU.Assembler.csproj | 2 ++ source/Indy.IL2CPU.Assembler/Invoke.cs | 9 +++++++++ source/Indy.IL2CPU.Assembler/Literal.cs | 9 +++++++++ 3 files changed, 20 insertions(+) create mode 100644 source/Indy.IL2CPU.Assembler/Invoke.cs create mode 100644 source/Indy.IL2CPU.Assembler/Literal.cs diff --git a/source/Indy.IL2CPU.Assembler/Indy.IL2CPU.Assembler.csproj b/source/Indy.IL2CPU.Assembler/Indy.IL2CPU.Assembler.csproj index 2b5eddaf9..2fa6458f2 100644 --- a/source/Indy.IL2CPU.Assembler/Indy.IL2CPU.Assembler.csproj +++ b/source/Indy.IL2CPU.Assembler/Indy.IL2CPU.Assembler.csproj @@ -53,7 +53,9 @@ + + diff --git a/source/Indy.IL2CPU.Assembler/Invoke.cs b/source/Indy.IL2CPU.Assembler/Invoke.cs new file mode 100644 index 000000000..6af4ac89a --- /dev/null +++ b/source/Indy.IL2CPU.Assembler/Invoke.cs @@ -0,0 +1,9 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Indy.IL2CPU.Assembler { + class Invoke : Instruction { + } +} diff --git a/source/Indy.IL2CPU.Assembler/Literal.cs b/source/Indy.IL2CPU.Assembler/Literal.cs new file mode 100644 index 000000000..94c5cdfdd --- /dev/null +++ b/source/Indy.IL2CPU.Assembler/Literal.cs @@ -0,0 +1,9 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Indy.IL2CPU.Assembler { + class Literal : Instruction { + } +}