Cosmos/source/Indy.IL2CPU/Assembler/x86/Call.cs
mterwoord_cp f843b15a6c
2008-12-01 06:42:14 +00:00

13 lines
No EOL
257 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode("call")]
public class Call: JumpBase {
public Call() {
mNear = false;
}
}
}