mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 04:40:14 +00:00
14 lines
355 B
C#
14 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mono.Cecil.Cil;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
class Pop : Indy.IL2CPU.IL.Pop {
|
|
public override void Assemble(Instruction aInstruction, BinaryWriter aOutput) {
|
|
Console.WriteLine("Pop");
|
|
}
|
|
}
|
|
}
|