mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
10 lines
186 B
C#
10 lines
186 B
C#
using System;
|
|
namespace IL2CPU.PostAssembler
|
|
{
|
|
interface IOpCodeInstruction
|
|
{
|
|
string OpCode{ get; }
|
|
|
|
// bool ContainsLabel(out string label);
|
|
}
|
|
}
|