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