This commit is contained in:
kudzu_cp 2012-07-08 17:29:51 +00:00
parent cbb09c8976
commit cc785feeb1
3 changed files with 6 additions and 6 deletions

View file

@ -84,10 +84,10 @@
<DesignTime>True</DesignTime>
<DependentUpon>CmdSend.xs</DependentUpon>
</Compile>
<Compile Include="DebugStub.cs">
<Compile Include="Main.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>DebugStub.xs</DependentUpon>
<DependentUpon>Main.xs</DependentUpon>
</Compile>
<Compile Include="Init.cs">
<AutoGen>True</AutoGen>
@ -151,9 +151,9 @@
<LastGenOutput>CmdSend.cs</LastGenOutput>
</None>
<None Include="Cosmos.snk" />
<None Include="DebugStub.xs">
<None Include="Main.xs">
<Generator>CosmosXSharpGenerator</Generator>
<LastGenOutput>DebugStub.cs</LastGenOutput>
<LastGenOutput>Main.cs</LastGenOutput>
</None>
<None Include="Init.xs">
<Generator>CosmosXSharpGenerator</Generator>

View file

@ -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");