mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 12:50:19 +00:00
22 lines
No EOL
485 B
C#
22 lines
No EOL
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
[OpCode(0xFFFFFFFF, "%define")]
|
|
public class Define: Instruction {
|
|
public string Symbol {
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public Define(string aSymbol) {
|
|
Symbol = aSymbol;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return "%define " + Symbol + " 1";
|
|
}
|
|
}
|
|
} |