mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 04:40:14 +00:00
21 lines
460 B
C#
21 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
public class Pushd: Instruction {
|
|
public readonly string[] Arguments;
|
|
public Pushd(params string[] aArguments) {
|
|
Arguments = aArguments;
|
|
}
|
|
|
|
public override string ToString() {
|
|
string xResult = "pushd";
|
|
foreach (string A in Arguments) {
|
|
xResult += " " + A;
|
|
}
|
|
return xResult;
|
|
}
|
|
}
|
|
}
|