mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 05:40:29 +00:00
16 lines
327 B
C#
16 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
public class Label: Instruction {
|
|
public readonly string Name;
|
|
public Label(string aName) {
|
|
Name = aName;
|
|
}
|
|
public override string ToString() {
|
|
return Name + ":";
|
|
}
|
|
}
|
|
}
|