mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
17 lines
No EOL
316 B
C#
17 lines
No EOL
316 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
[Obsolete("Try using dedicated opcodes")]
|
|
public class Literal: Instruction {
|
|
public readonly string Data;
|
|
|
|
public Literal(string aData) {
|
|
Data = aData;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return Data;
|
|
}
|
|
}
|
|
} |