mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-24 12:35:31 +00:00
This commit is contained in:
parent
cbb09c8976
commit
cc785feeb1
3 changed files with 6 additions and 6 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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");
|
||||||
Loading…
Reference in a new issue