mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
16 lines
350 B
C#
16 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace IL2CPU.PostAssembler
|
|
{
|
|
internal class BinaryLWInstruction :LWInstruction
|
|
{
|
|
|
|
public override LWInstructionType InstructionType
|
|
{
|
|
get { return LWInstructionType.BinaryInstruction; }
|
|
}
|
|
}
|
|
}
|