Cosmos/source2/Compiler/Cosmos.Compiler.DebugStub/Old/CmdPing.cs
kudzu_cp f605ecb385
2012-07-08 04:13:57 +00:00

19 lines
459 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Assembler;
using Cosmos.Assembler.x86;
using Cosmos.Debug.Consts;
using Cosmos.Assembler.XSharp;
namespace Cosmos.Debug.DebugStub {
public partial class DebugStub : CodeGroup {
public class Ping : Inlines {
public override void Assemble() {
AL = DsVsip.Pong;
Call("DebugStub_ComWriteAL");
}
}
}
}