mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
12 lines
212 B
C#
12 lines
212 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86
|
|
{
|
|
[OpCode("jae")]
|
|
public class JumpIfAboveOrEqual : JumpBase
|
|
{
|
|
}
|
|
}
|