From cc785feeb16c17ca809038f8ed50552decd52f43 Mon Sep 17 00:00:00 2001
From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498>
Date: Sun, 8 Jul 2012 17:29:51 +0000
Subject: [PATCH]
---
.../Cosmos.Debug.DebugStub.csproj | 8 ++++----
.../Cosmos.Compiler.DebugStub/{DebugStub.cs => Main.cs} | 4 ++--
.../Cosmos.Compiler.DebugStub/{DebugStub.xs => Main.xs} | 0
3 files changed, 6 insertions(+), 6 deletions(-)
rename source2/Compiler/Cosmos.Compiler.DebugStub/{DebugStub.cs => Main.cs} (80%)
rename source2/Compiler/Cosmos.Compiler.DebugStub/{DebugStub.xs => Main.xs} (100%)
diff --git a/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj b/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj
index 6f29c4991..f16f3ecde 100644
--- a/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj
+++ b/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj
@@ -84,10 +84,10 @@
True
CmdSend.xs
-
+
True
True
- DebugStub.xs
+ Main.xs
True
@@ -151,9 +151,9 @@
CmdSend.cs
-
+
CosmosXSharpGenerator
- DebugStub.cs
+ Main.cs
CosmosXSharpGenerator
diff --git a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs b/source2/Compiler/Cosmos.Compiler.DebugStub/Main.cs
similarity index 80%
rename from source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs
rename to source2/Compiler/Cosmos.Compiler.DebugStub/Main.cs
index 52091bc7e..1eb773081 100644
--- a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs
+++ b/source2/Compiler/Cosmos.Compiler.DebugStub/Main.cs
@@ -4,9 +4,9 @@ using Cosmos.Assembler;
using Cosmos.Assembler.x86;
namespace Cosmos.Debug.DebugStub {
- public class DebugStub : Cosmos.Assembler.Code {
+ public class Main : Cosmos.Assembler.Code {
- public DebugStub(Assembler.Assembler aAssembler) : base(aAssembler) {}
+ public Main(Assembler.Assembler aAssembler) : base(aAssembler) {}
public override void Assemble() {
new Comment("X#: Group DebugStub");
diff --git a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.xs b/source2/Compiler/Cosmos.Compiler.DebugStub/Main.xs
similarity index 100%
rename from source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.xs
rename to source2/Compiler/Cosmos.Compiler.DebugStub/Main.xs