mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
17 lines
277 B
C#
17 lines
277 B
C#
using System;
|
|
namespace IL2CPU.PostAssembler
|
|
{
|
|
interface ILWInstruction
|
|
{
|
|
byte[] ToBinary();
|
|
string ToString();
|
|
|
|
|
|
LWInstructionType InstructionType { get; }
|
|
|
|
// bool ContainsLabel(out string label);
|
|
|
|
|
|
|
|
}
|
|
}
|