Cosmos/source/Indy.IL2CPU.Assembler.X86/Ret.cs
2007-09-01 09:42:43 +00:00

12 lines
No EOL
234 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
public class Ret: Instruction{
public override string ToString() {
return "ret";
}
}
}