mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 14:50:42 +00:00
12 lines
No EOL
288 B
C#
12 lines
No EOL
288 B
C#
using System;
|
|
using System.IO;
|
|
using Mono.Cecil.Cil;
|
|
using CPU = Indy.IL2CPU.Assembler;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
public class Ldc_I4_S: IL.Ldc_I4_S {
|
|
public override void Assemble(Instruction aInstruction) {
|
|
new CPU.Pushd(aInstruction.Operand.ToString());
|
|
}
|
|
}
|
|
} |