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

View file

@ -4,9 +4,9 @@ using Cosmos.Assembler;
using Cosmos.Assembler.x86; using Cosmos.Assembler.x86;
namespace Cosmos.Debug.DebugStub { 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() { public override void Assemble() {
new Comment("X#: Group DebugStub"); new Comment("X#: Group DebugStub");