Cosmos/source/Cosmos.Assembler/x86/Call.cs
2016-06-11 16:13:13 -04:00

13 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Assembler.x86 {
[Cosmos.Assembler.OpCode("Call")]
public class Call: JumpBase {
public Call():base("Call") {
mNear = false;
}
}
}