mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
19 lines
467 B
C#
19 lines
467 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 DebugStub(int aComNo) {
|
|
mComNo = aComNo;
|
|
mComAddr = mComPortAddresses[mComNo - 1];
|
|
mComStatusAddr = (UInt16)(mComAddr + 5);
|
|
}
|
|
|
|
}
|
|
}
|