mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
26 lines
No EOL
533 B
C#
26 lines
No EOL
533 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Assembler
|
|
{
|
|
public class LiteralAssemblerCode: Instruction
|
|
{
|
|
public LiteralAssemblerCode(string code)
|
|
{
|
|
Code = code;
|
|
}
|
|
|
|
public string Code
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public override void WriteText(Assembler aAssembler, System.IO.TextWriter aOutput)
|
|
{
|
|
aOutput.WriteLine(Code);
|
|
}
|
|
}
|
|
} |