mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
17 lines
226 B
Text
17 lines
226 B
Text
namespace DebugStub
|
|
|
|
function Ping {
|
|
// Ds2Vs.Pong
|
|
AL = 13
|
|
ComWriteAL()
|
|
}
|
|
|
|
function TraceOn {
|
|
// Tracing.On
|
|
.TraceMode = 1
|
|
}
|
|
|
|
function TraceOff {
|
|
// Tracing.Off
|
|
.TraceMode = 0
|
|
}
|