mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 14:50:42 +00:00
22 lines
381 B
C#
22 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
|
|
namespace Lost.JIT.AMD64
|
|
{
|
|
[Serializable]
|
|
public sealed class BreakPoint: ProcessorInstruction
|
|
{
|
|
public override int? Size
|
|
{
|
|
get { return 1; }
|
|
}
|
|
|
|
public override void Compile(Stream destStream)
|
|
{
|
|
destStream.WriteByte(0xCC);
|
|
}
|
|
}
|
|
}
|