mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
16 lines
No EOL
272 B
C#
16 lines
No EOL
272 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
public class Literal: Instruction {
|
|
public readonly string Data;
|
|
|
|
public Literal(string aData) {
|
|
Data = aData;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return Data;
|
|
}
|
|
}
|
|
} |